aboutsummaryrefslogtreecommitdiff
path: root/src/patch/grid.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-21 17:01:39 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-21 17:01:39 +0000
commite2933f68a4e11f58e8115b08ded649bd867cf135 (patch)
tree87531165859adc37a9c2d7ad161390a29317f50d /src/patch/grid.hh
parent854185f3bab9964edf3ef8f300b7bcd8b7be207d (diff)
fix assorted syntax errors --> now compiles cleanly!
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@550 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/grid.hh')
-rw-r--r--src/patch/grid.hh14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/patch/grid.hh b/src/patch/grid.hh
index 8e553db..9fff800 100644
--- a/src/patch/grid.hh
+++ b/src/patch/grid.hh
@@ -406,13 +406,19 @@ public:
// low-level access to data arrays (!!dangerous!!)
const fp* gridfn_data_array(int gfn) const
- { return gridfn_data_->data_array(gfn); }
+ { return & gridfn(gfn, min_irho(),min_isigma()); }
fp* gridfn_data_array(int gfn)
- { return gridfn_data_->data_array(gfn); }
+ { return & gridfn(gfn, min_irho(),min_isigma()); }
const fp* ghosted_gridfn_data_array(int ghosted_gfn) const
- { return ghosted_gridfn_data_->data_array(ghosted_gfn); }
+ {
+ return & ghosted_gridfn(ghosted_gfn, ghosted_min_irho(),
+ ghosted_min_isigma());
+ }
fp* ghosted_gridfn_data_array(int ghosted_gfn)
- { return ghosted_gridfn_data_->data_array(ghosted_gfn); }
+ {
+ return & ghosted_gridfn(ghosted_gfn, ghosted_min_irho(),
+ ghosted_min_isigma());
+ }
//