aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_system.cc
diff options
context:
space:
mode:
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");
- }
-}