aboutsummaryrefslogtreecommitdiff
path: root/src/driver/mask.cc
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-11-20 16:10:23 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-11-20 16:10:23 +0000
commit1b865b5b231d63ca71eba7579b791cfceea8f624 (patch)
tree99740c5cce26a8d75a9d4ed8f4832b25cc638cf0 /src/driver/mask.cc
parent1973e5b8fe2d76d877fdf0203447633ef15249c5 (diff)
rename parameter
min_horizon_size_for_mask to min_horizon_radius_points_for_mask to make its semantics clearer (thanks to Erik Schnetter for suggesting the renaming!) git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1209 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/driver/mask.cc')
-rw-r--r--src/driver/mask.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver/mask.cc b/src/driver/mask.cc
index bfcb9fd..03f55aa 100644
--- a/src/driver/mask.cc
+++ b/src/driver/mask.cc
@@ -415,13 +415,13 @@ set_mask_gridfn_to_outside_value(mgi,
// skip this horizon if it's too small
//
if (BH_diagnostics.min_radius
- < mask_info.min_horizon_size_for_mask*mgi.max_coord_delta)
+ < mask_info.min_horizon_radius_points_for_mask*mgi.max_coord_delta)
then {
if (verbose_info.print_algorithm_details)
then CCTK_VInfo(CCTK_THORNSTRING,
" min_radius=%g < %g grid points ==> skipping mask for horizon %d",
BH_diagnostics.min_radius,
- mask_info.min_horizon_size_for_mask,
+ mask_info.min_horizon_radius_points_for_mask,
hn);
continue; // *** LOOP CONTROL ***
}