From 8a769e9cfe9c942e201a64f4f53dade402f6fef8 Mon Sep 17 00:00:00 2001 From: jthorn Date: Thu, 25 May 2006 18:08:54 +0000 Subject: * 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 --- src/driver/mask.cc | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'src') 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])); } -- cgit v1.2.3