aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-22 14:45:50 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-22 14:45:50 +0000
commit58ce9dcc3f66feb162dd9004fe993ae7db2c8fdd (patch)
tree50df97e7d57ecb03dbeb7296ce20eb572e9b01a3
parent9e48f5edc1e85be70cd6b7fd48b92fa9a2baca7c (diff)
permute the order of some fns in patch_system:: for clarity
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@571 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/patch/patch_system.hh18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/patch/patch_system.hh b/src/patch/patch_system.hh
index 484fc30..f6e1a86 100644
--- a/src/patch/patch_system.hh
+++ b/src/patch/patch_system.hh
@@ -186,15 +186,6 @@ public:
output_file_name, want_ghost_zones);
}
-private:
- // ... internal worker function for all printing
- void print_unknown_gridfn
- (bool ghosted_flag, int unknown_gfn,
- bool print_xyz_flag, bool radius_is_ghosted_flag,
- int unknown_radius_gfn,
- const char output_file_name[], bool want_ghost_zones)
- const;
-
public:
// read from a named file
void read_gridfn(int gfn, const char input_file_name[])
@@ -206,8 +197,15 @@ public:
read_unknown_gridfn(true, ghosted_gfn,
input_file_name, want_ghost_zones);
}
+
private:
- // ... internal worker function for all reading
+ // ... internal worker functions
+ void print_unknown_gridfn
+ (bool ghosted_flag, int unknown_gfn,
+ bool print_xyz_flag, bool radius_is_ghosted_flag,
+ int unknown_radius_gfn,
+ const char output_file_name[], bool want_ghost_zones)
+ const;
void read_unknown_gridfn(bool ghosted_flag, int unknown_gfn,
const char input_file_name[],
bool want_ghost_zones);