aboutsummaryrefslogtreecommitdiff
path: root/src/patch
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-30 14:35:28 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-30 14:35:28 +0000
commit4ec18979a82a22785cbf9410b9b59a3cbe66a691 (patch)
treefa3db830e6a956001adc639f3fecaa05f31a5c3c /src/patch
parent0ae05c01ea24aab5e0f1412a3574997fd297a143 (diff)
* print a bit more info about setting up data structures
* fix a few bugs where error messages had mismatched printf (CCTK_VWarn) formats and arguments git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@941 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch')
-rw-r--r--src/patch/patch_info.cc3
-rw-r--r--src/patch/patch_system.cc3
2 files changed, 5 insertions, 1 deletions
diff --git a/src/patch/patch_info.cc b/src/patch/patch_info.cc
index cc38487..68e154e 100644
--- a/src/patch/patch_info.cc
+++ b/src/patch/patch_info.cc
@@ -179,10 +179,11 @@ if (! ( jtutil::fuzzy<fp>::is_integer(N_irho_zones_fp)
then error_exit(ERROR_EXIT,
"***** patch_info::verify_grid_spacing_ok():\n"
" N_zones_per_right_angle=%d gives grid spacing which\n"
-" doesn't evenly divide grid sizes!"
+" doesn't evenly divide grid sizes!\n"
" [min,max]_drho=[%g,%g] [min,max]_dsigma=[%g,%g]\n"
" ==> N_irho_zones_fp=%g N_isigma_zones_fp=%g\n"
,
+ N_zones_per_right_angle,
double(min_drho), double(max_drho),
double(min_dsigma), double(max_dsigma),
double(N_irho_zones_fp), double(N_isigma_zones_fp));
diff --git a/src/patch/patch_system.cc b/src/patch/patch_system.cc
index df05b2e..7046b30 100644
--- a/src/patch/patch_system.cc
+++ b/src/patch/patch_system.cc
@@ -160,6 +160,9 @@ if (print_summary_msg_flag)
CCTK_VInfo(CCTK_THORNSTRING,
" at origin (%g,%g,%g)",
double(origin_x()), double(origin_y()), double(origin_z()));
+ CCTK_VInfo(CCTK_THORNSTRING,
+ " with %d angular zones per right angle",
+ N_zones_per_right_angle);
}
// construct/interlink the patches and ghost zones