aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-12 20:07:22 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-03-12 20:07:22 +0000
commita220321a2caf0bc90439aae888b46461119bf744 (patch)
tree60bd09c552c1de1a54c33c6004e82e1fe0247677
parentf5c2b4167c558ff8b2fc85cee27a90609fb8f71c (diff)
print a bit more info on point-outside-grid errors
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@970 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/gr/expansion.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gr/expansion.cc b/src/gr/expansion.cc
index b64a0b4..f10106e 100644
--- a/src/gr/expansion.cc
+++ b/src/gr/expansion.cc
@@ -683,13 +683,14 @@ if (status == CCTK_ERROR_INTERP_POINT_OUTSIDE)
CCTK_VWarn(warn_level, __LINE__, __FILE__, CCTK_THORNSTRING,
"\n"
"interpolate_geometry():\n"
-" the trial-horizon-surface point\n"
+" the trial-horizon-surface point [pt=%d]\n"
" global_(x,y,z)=(%g,%g,%g)\n"
" is outside the grid (or too close to the boundary)"
" in the %c%c direction!\n"
" (this may mean that driver::ghost_size is too small,\n"
" especially if any horizon crosses a symmetry boundary)"
,
+ error_pt,
global_x, global_y, global_z,
direction, axis);
}