aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2006-05-25 18:08:54 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2006-05-25 18:08:54 +0000
commit8a769e9cfe9c942e201a64f4f53dade402f6fef8 (patch)
tree132deb431609c83ea9393e6ddaf1a86cc37a0bb4 /src
parentf1cc24944937e4302e44345bb06b7f9fa88c4252 (diff)
* when printing the verbose message about each grid that we're setting
a mask for, also include the grid spacing in the message (this makes it easier to identify which refinement level this is) * adjust wording of message to no longer imply that there's only a single grid (= Carpet component here) per processor git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1451 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src')
-rw-r--r--src/driver/mask.cc15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/driver/mask.cc b/src/driver/mask.cc
index 2058080..19ce183 100644
--- a/src/driver/mask.cc
+++ b/src/driver/mask.cc
@@ -380,17 +380,20 @@ if (verbose_info.print_algorithm_highlights)
if (verbose_info.print_algorithm_details)
then {
CCTK_VInfo(CCTK_THORNSTRING,
- " grid on this processor has x=[%g,%g]",
+ " this grid has x=[%g,%g] Delta_x=%g",
double(mgi.global_xyz_of_ijk(X_AXIS, 0)),
- double(mgi.global_xyz_of_ijk(X_AXIS, mgi.proc_gridfn_dims[X_AXIS]-1)));
+ double(mgi.global_xyz_of_ijk(X_AXIS, mgi.proc_gridfn_dims[X_AXIS]-1)),
+ double(mgi.coord_delta[X_AXIS]));
CCTK_VInfo(CCTK_THORNSTRING,
- " y=[%g,%g]",
+ " y=[%g,%g] Delta_y=%g",
double(mgi.global_xyz_of_ijk(Y_AXIS, 0)),
- double(mgi.global_xyz_of_ijk(Y_AXIS, mgi.proc_gridfn_dims[Y_AXIS]-1)));
+ double(mgi.global_xyz_of_ijk(Y_AXIS, mgi.proc_gridfn_dims[Y_AXIS]-1)),
+ double(mgi.coord_delta[Y_AXIS]));
CCTK_VInfo(CCTK_THORNSTRING,
- " z=[%g,%g]",
+ " z=[%g,%g] Delta_z=%g",
double(mgi.global_xyz_of_ijk(Z_AXIS, 0)),
- double(mgi.global_xyz_of_ijk(Z_AXIS, mgi.proc_gridfn_dims[Z_AXIS]-1)));
+ double(mgi.global_xyz_of_ijk(Z_AXIS, mgi.proc_gridfn_dims[Z_AXIS]-1)),
+ double(mgi.coord_delta[Z_AXIS]));
}