aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_interp.cc
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 /src/patch/patch_interp.cc
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
Diffstat (limited to 'src/patch/patch_interp.cc')
-rw-r--r--src/patch/patch_interp.cc4
1 files changed, 2 insertions, 2 deletions
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_);
}