aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknarf <knarf@57fe0bb3-ccba-405f-9b23-de0201f165b7>2010-02-12 20:17:00 +0000
committerknarf <knarf@57fe0bb3-ccba-405f-9b23-de0201f165b7>2010-02-12 20:17:00 +0000
commit284f26cffee4e51ec42b9b47b1bf615232b269ed (patch)
tree37f8fbcec3f8d0058e91bcd983682a0f110fb91f
parentdcc5140aea0da174e28fe465a1a49cf5d7f43094 (diff)
create group HydroBase_ExcisionMaskSetup for initialization of excision mask, is scheduled in HydroBase_Initial, PostRegridInitial, PostRegrid and Post_Recover_Variables and can be used to schedule functions which set excision masks
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/HydroBase/trunk@22 57fe0bb3-ccba-405f-9b23-de0201f165b7
-rwxr-xr-xschedule.ccl19
1 files changed, 16 insertions, 3 deletions
diff --git a/schedule.ccl b/schedule.ccl
index ffa7278..4799da3 100755
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -145,13 +145,26 @@ if (CCTK_Equals(initial_Bvec, "zero"))
if (hydro_excision)
{
- schedule GROUP HydroBase_ExcisionHasBeenSet at CCTK_PostStep
+ schedule GROUP HydroBase_ExcisionMaskSetup in HydroBase_Initial
{
- } "Group to schedule thorns changing the mask before and thorns using the mask after"
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at PostRegridInitial
+ {
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at PostRegrid
+ {
+ } "Set up hydro excision mask"
+ schedule GROUP HydroBase_ExcisionMaskSetup at Post_Recover_Variables
+ {
+ } "Set up hydro excision mask"
- schedule HydroBase_InitExcisionMask in HydroBase_Initial
+ schedule HydroBase_InitExcisionMask in HydroBase_ExcisionMaskSetup
{
LANG: C
} "Initialize hydro excision mask to 'no excision everywhere'"
+
+ schedule GROUP HydroBase_ExcisionHasBeenSet at CCTK_PostStep
+ {
+ } "Group to schedule thorns changing the mask before and thorns using the mask after"
}