aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_system.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-11 16:09:08 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-11 16:09:08 +0000
commit2729c031aa7da776fb61f1e8e4c2bef3eab456f3 (patch)
tree4c617d525f201681778d86667dc05ff054d9dceb /src/patch/patch_system.cc
parent553f43a6f2c14cd6edebb21edeeed8fc69962372 (diff)
remove duplicate copy of print_ghosted_gridfn() fn
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@493 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch_system.cc')
-rw-r--r--src/patch/patch_system.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/patch/patch_system.cc b/src/patch/patch_system.cc
index 30cf981..301dd5d 100644
--- a/src/patch/patch_system.cc
+++ b/src/patch/patch_system.cc
@@ -1065,23 +1065,3 @@ void patch_system::print_ghosted_gridfn(int ghosted_gfn,
fprintf(output_fp, "\n");
}
}
-
-//******************************************************************************
-
-//
-// This function prints a ghosted-grid gridfn in ASCII format to an
-// already-open stdio stream. The output format is suitable for a
-// gnuplot 'splot' command.
-//
-void patch_system::print_ghosted_gridfn(int ghosted_gfn,
- FILE *output_fp = stdout,
- bool want_ghost_zones = true)
- const
-{
- for (int pn = 0 ; pn < N_patches() ; ++pn)
- {
- const patch& p = ith_patch(pn);
- p.print_ghosted_gridfn(ghosted_gfn, output_fp, want_ghost_zones);
- fprintf(output_fp, "\n");
- }
-}