aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch_interp.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-01 18:29:08 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-01 18:29:08 +0000
commitfead8c64ea8bd003fdc583e22ca42d7cfadd6b22 (patch)
tree40fa61d756eb1d872f175b332278d697dd375da2 /src/patch/patch_interp.hh
parent4427ccc1784b4cac4113eae09db1bd70d24f218a (diff)
finish construction/setup code
--> should all be ready for test compiles now git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@418 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch_interp.hh')
-rw-r--r--src/patch/patch_interp.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/patch/patch_interp.hh b/src/patch/patch_interp.hh
index 61dffe3..c0c6dcb 100644
--- a/src/patch/patch_interp.hh
+++ b/src/patch/patch_interp.hh
@@ -192,18 +192,19 @@ private:
// gridfn type codes for interpolator
// ... must be CCTK_INT so we can pass by reference to interpolator
+ // ... must be mutable so we can set values in ctor
// ... index is (gfn)
- jtutil::array1d<CCTK_INT> gridfn_type_codes_;
+ mutable jtutil::array1d<CCTK_INT> gridfn_type_codes_;
// --> start of gridfn data to use for interpolation
// (reset for each iperp)
// ... we do *not* own the pointed-to data!
// ... index is (gfn)
- jtutil::array1d<fp *> gridfn_data_ptrs_;
+ mutable jtutil::array1d<fp *> gridfn_data_ptrs_;
// --> start of result buffer for interpolation
// (reset for each iperp)
// ... we do *not* own the pointed-to data!
// ... index is (gfn)
- jtutil::array1d<fp *> result_buffer_ptrs_;
+ mutable jtutil::array1d<fp *> result_buffer_ptrs_;
}