aboutsummaryrefslogtreecommitdiff
path: root/src/patch
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-10 13:25:51 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-10 13:25:51 +0000
commitb091a859300f21f4cc2e741ad00475ea23280182 (patch)
tree36a3ca321e11d25e27bfebaf53e7673264721224 /src/patch
parent254d22f6e323c76cd5272d4f44424bdcddfb859d (diff)
tweak a few more comments
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@478 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch')
-rw-r--r--src/patch/ghost_zone.hh1
-rw-r--r--src/patch/patch_interp.cc2
-rw-r--r--src/patch/patch_interp.hh11
3 files changed, 9 insertions, 5 deletions
diff --git a/src/patch/ghost_zone.hh b/src/patch/ghost_zone.hh
index 056d2e1..78c3e40 100644
--- a/src/patch/ghost_zone.hh
+++ b/src/patch/ghost_zone.hh
@@ -22,6 +22,7 @@
// fd_grid.hh
// patch.hh
// patch_edge.hh
+// patch_interp.hh
//
//*****************************************************************************
diff --git a/src/patch/patch_interp.cc b/src/patch/patch_interp.cc
index 40261d5..59a7cd9 100644
--- a/src/patch/patch_interp.cc
+++ b/src/patch/patch_interp.cc
@@ -1,4 +1,4 @@
-// patch_interp.cc -- interpolate gridfn data for another patch's ghost zone
+// patch_interp.cc -- patch interpolation region
// $Id$
//
diff --git a/src/patch/patch_interp.hh b/src/patch/patch_interp.hh
index 1ec1ed0..87d018e 100644
--- a/src/patch/patch_interp.hh
+++ b/src/patch/patch_interp.hh
@@ -1,4 +1,4 @@
-// patch_interp.hh -- interpolate data for another patch's ghost zone
+// patch_interp.hh -- patch interpolation region
// $Id$
//
@@ -24,13 +24,15 @@
//*****************************************************************************
//
-// patch_interp - interpolation from just inside patch edge
+// patch_interp - patch interpolation region
//
//
// A patch_interp object is responsible for interpolating gridfn data
// from its owning patch for use by another patch's ghost_zone object
-// (in setting up the gridfn in the other ghost zone).
+// (in setting up the gridfn in the other ghost zone). A patch_interp
+// also defines a "patch interpolation region", the region of its owning
+// patch from which this interpolation will use gridfn data.
//
//
@@ -160,7 +162,8 @@ private:
const patch& my_patch_;
const patch_edge& my_edge_;
- // range of (iperp,ipar) in this patch from which
+ // patch interpolation region,
+ // i.e. range of (iperp,ipar) in this patch from which
// we will use gridfn data in interpolation
const int min_iperp_, max_iperp_;
const int min_ipar_, max_ipar_;