aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_system.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-18 10:54:38 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-18 10:54:38 +0000
commitfed5951c9fbe44804c2473a36e4ab2a8713982fb (patch)
tree19be12a1d97e087fc45f29aa269c2aa43a11534b /src/patch/patch_system.hh
parent348335dde100db7e4a008736c165963232a908d2 (diff)
rename *N_ghost_zones --> N_ghost_points
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@212 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch_system.hh')
-rw-r--r--src/patch/patch_system.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/patch/patch_system.hh b/src/patch/patch_system.hh
index d7d67b1..64efff8 100644
--- a/src/patch/patch_system.hh
+++ b/src/patch/patch_system.hh
@@ -59,7 +59,7 @@ struct patch_info
// ... result refers to internal static buffer;
// the usual caveats about lifetimes/overwriting apply
const grid_arrays::grid_array_pars& grid_array_pars
- (int N_ghost_zones, fp delta_drho_dsigma)
+ (int N_ghost_points, fp delta_drho_dsigma)
const;
// compute and return reference to struct grid::grid_pars
@@ -252,7 +252,7 @@ public:
//
patch_system(fp origin_x_in, fp origin_y_in, fp origin_z_in,
enum patch_system_type type_in,
- int N_ghost_zones, fp delta_drho_dsigma,
+ int N_ghost_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
int interpolator_order_in);
~patch_system();
@@ -264,18 +264,18 @@ private:
// create/interlink patches, ghost zones, and frontiers
void setup_full_sphere_patch_system
- (int N_ghost_zones, fp delta_drho_dsigma,
+ (int N_ghost_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
int interpolator_order_in);
void setup_hemisphere_patch_system
- (int N_ghost_zones, fp delta_drho_dsigma,
+ (int N_ghost_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
int interpolator_order_in);
void setup_quadrant_patch_system
- (int N_ghost_zones, fp delta_drho_dsigma,
+ (int N_ghost_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
int interpolator_order_in);
- void setup_octant_patch_system(int N_ghost_zones, fp delta_drho_dsigma,
+ void setup_octant_patch_system(int N_ghost_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
int interpolator_order_in);