aboutsummaryrefslogtreecommitdiff
path: root/src/patch/fd_grid.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-14 16:06:33 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-07-14 16:06:33 +0000
commit48e93f3f6f8f9da1d3ad3ab61b9a80819f5b5015 (patch)
treee25a068d2dc03f43c2eb3fb75864dfce5e09ef5b /src/patch/fd_grid.hh
parentbac07656089bc20098cef83b7890e303be5ed056 (diff)
gfn isnt 0-origin any more, i.e. we now use min/max for it
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@148 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/fd_grid.hh')
-rw-r--r--src/patch/fd_grid.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/patch/fd_grid.hh b/src/patch/fd_grid.hh
index c537a07..0fd384e 100644
--- a/src/patch/fd_grid.hh
+++ b/src/patch/fd_grid.hh
@@ -373,8 +373,10 @@ public:
// constructor: pass through to grid:: constructor
fd_grid(grid_array_pars& grid_array_pars_in,
grid_pars& grid_pars_in,
- int N_gridfns_in)
- : grid(grid_array_pars_in, grid_pars_in, N_gridfns_in)
+ int min_gfn_in, int max_gfn_in)
+ : grid(grid_array_pars_in,
+ grid_pars_in,
+ min_gfn_in, max_gfn_in)
{ }
// compiler-generated default destructor is ok