From cada3378b043d7c8c0e7ee28ecc7087182d311ae Mon Sep 17 00:00:00 2001 From: jthorn Date: Wed, 3 Dec 2003 23:25:24 +0000 Subject: At Ian Hawke's request, make the setting of an excision mask specifyable on a per-horizon basis: The old parameter set_mask is now replaced by two new parameters: set_mask_for_all_horizons set_mask_for_individual_horizon[n] For most purposes, you can just change set_mask to set_mask_for_all_horizons in your parameter files. If you really want to control the setting of the mask on a per-horizon basis, read section 4.6 in the thorn guide to find out how the new parameters work. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@1222 f88db872-0e4f-0410-b76b-b9085cfa78c5 --- src/driver/driver.hh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/driver/driver.hh') diff --git a/src/driver/driver.hh b/src/driver/driver.hh index 1179839..71cb488 100644 --- a/src/driver/driver.hh +++ b/src/driver/driver.hh @@ -191,7 +191,8 @@ struct verbose_info // struct mask_info { - bool set_mask; + bool set_mask_for_any_horizon; + bool* set_mask_for_this_horizon; CCTK_REAL radius_multiplier, radius_offset; CCTK_REAL buffer_thickness; bool mask_is_noshrink; @@ -380,7 +381,7 @@ extern "C" // mask.cc // ... called from Cactus Scheduler extern "C" - void AHFinderDirect_do_masks(CCTK_ARGUMENTS); + void AHFinderDirect_maybe_do_masks(CCTK_ARGUMENTS); // initial_guess.cc void setup_initial_guess(patch_system& ps, -- cgit v1.2.3