aboutsummaryrefslogtreecommitdiff
path: root/src/patch
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-31 18:50:13 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-31 18:50:13 +0000
commit058eec14278dc8278a64dcb0f4135356948cdcd5 (patch)
tree64e15a44f972947f07a9769999c3ba686c808002 /src/patch
parent1f22316779d658286289f583363095a31df67290 (diff)
This log message is the one that should have been attached to the
previous commit, but wasn't due to an editing mistake. :( * Rename two parameters N_ghost_points --> ghost_zone_width N_overlap_points --> patch_overlap_width In both cases there's no change in semantics, "just" a name change to be clearer. * Redesign the way we specify the angular resolution: Formerly it was via a real parameter delta_drho_dsigma which gave the angular grid spacing in degrees. This was a bit clumsy -- you had to hand-calculate which spacings would evenly divide the grid sizes (typically 45 degrees, or 90 degrees for full-sphere patch systems). The new scheme uses an integer parameter N_zones_per_right_angle which gives the number of grid zones in 90 degrees, i.e. it gives 90.0/delta_drho_dsigma . This makes it easy to tell what the legal values are (integers, must be even for non-full-sphere patch systems, since they have 45-degree-wide patches). Since most par files didn't specify the old parameter, they won't need changing for the new one; another set of commits fixes all the par files in the run/ directory tree of this thorn which do specify the resolution explicitly. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@875 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch')
-rw-r--r--src/patch/patch_system.cc1
-rw-r--r--src/patch/patch_system.hh1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/patch/patch_system.cc b/src/patch/patch_system.cc
index f01a295..da4027c 100644
--- a/src/patch/patch_system.cc
+++ b/src/patch/patch_system.cc
@@ -1,5 +1,6 @@
// patch_system.cc -- describes the (an) entire system of patches
// $Header$
+
//
// patch_system::patch_system
// patch_system::~patch_system
diff --git a/src/patch/patch_system.hh b/src/patch/patch_system.hh
index 26d324d..6bd5518 100644
--- a/src/patch/patch_system.hh
+++ b/src/patch/patch_system.hh
@@ -1,5 +1,6 @@
// patch_system.hh -- describes the (an) entire system of interlinked patches
// $Header$
+
//
// patch_system - describes a system of interlinked patches
//