aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-18 11:37:12 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-18 11:37:12 +0000
commit052065cb38c4fb38cc197be4e90963139e32afd9 (patch)
tree6c72252aab06d0a0c6d2ca08a61abc42a05987a1
parent5deb9a05c30a5580ce07589cb7c416a89ba25b69 (diff)
rename interpolator_order_in --> interpolator_order
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@215 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/patch/patch.cc4
-rw-r--r--src/patch/patch_interp.cc4
-rw-r--r--src/patch/patch_interp.hh2
-rw-r--r--src/patch/patch_system.hh10
4 files changed, 10 insertions, 10 deletions
diff --git a/src/patch/patch.cc b/src/patch/patch.cc
index d0fa7ea..66476e4 100644
--- a/src/patch/patch.cc
+++ b/src/patch/patch.cc
@@ -396,7 +396,7 @@ my_gzp = gzp;
//
patch_frontier& patch::setup_patch_frontier(const patch_edge& my_edge,
int min_iperp_in, int max_iperp_in,
- int interpolator_order_in)
+ int interpolator_order)
{
// make sure we belong to the right patch
assert(& my_edge.my_patch() == this);
@@ -404,7 +404,7 @@ assert(& my_edge.my_patch() == this);
patch_frontier *temp
= new patch_frontier(my_edge,
min_iperp_in, max_iperp_in,
- interpolator_order_in);
+ interpolator_order);
patch_frontier*& my_pfp
= my_edge.is_min()
diff --git a/src/patch/patch_interp.cc b/src/patch/patch_interp.cc
index f564dc8..6fb79fc 100644
--- a/src/patch/patch_interp.cc
+++ b/src/patch/patch_interp.cc
@@ -44,7 +44,7 @@
patch_frontier::patch_frontier
(const patch_edge& my_edge_in,
int min_iperp_in, int max_iperp_in,
- int interpolator_order_in)
+ int interpolator_order)
: my_patch_(my_edge_in.my_patch()),
my_edge_(my_edge_in),
min_iperp_(min_iperp_in), max_iperp_(max_iperp_in),
@@ -88,7 +88,7 @@ interpolator_
{
for (int iperp = min_iperp() ; iperp <= max_iperp() ; ++iperp)
{
- interpolator_t_* I = new interpolator_t_(interpolator_order_in);
+ interpolator_t_* I = new interpolator_t_(interpolator_order);
(*interpolator_)(gfn,iperp) = I;
I->setup_data_x(*ripar_map_);
}
diff --git a/src/patch/patch_interp.hh b/src/patch/patch_interp.hh
index 2ca02df..3fc5c9b 100644
--- a/src/patch/patch_interp.hh
+++ b/src/patch/patch_interp.hh
@@ -91,7 +91,7 @@ public:
// the ipar range over which the interpolation will be done
patch_frontier(const patch_edge& my_edge_in,
int min_iperp_in, int max_iperp_in,
- int interpolator_order_in);
+ int interpolator_order);
~patch_frontier();
private:
diff --git a/src/patch/patch_system.hh b/src/patch/patch_system.hh
index 4352122..a1585fd 100644
--- a/src/patch/patch_system.hh
+++ b/src/patch/patch_system.hh
@@ -257,7 +257,7 @@ public:
int N_ghost_points, int N_overlap_points,
fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
- int interpolator_order_in);
+ int interpolator_order);
~patch_system();
private:
@@ -269,19 +269,19 @@ private:
void setup_full_sphere_patch_system
(int N_ghost_points, int N_overlap_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
- int interpolator_order_in);
+ int interpolator_order);
void setup_hemisphere_patch_system
(int N_ghost_points, int N_overlap_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
- int interpolator_order_in);
+ int interpolator_order);
void setup_quadrant_patch_system
(int N_ghost_points, int N_overlap_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
- int interpolator_order_in);
+ int interpolator_order);
void setup_octant_patch_system
(int N_ghost_points, int N_overlap_points, fp delta_drho_dsigma,
int min_gfn_in, int max_gfn_in,
- int interpolator_order_in);
+ int interpolator_order);
// create/interlink a pair of periodic-symmetry ghost zones
static