From 284f26cffee4e51ec42b9b47b1bf615232b269ed Mon Sep 17 00:00:00 2001 From: knarf Date: Fri, 12 Feb 2010 20:17:00 +0000 Subject: 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 --- schedule.ccl | 19 ++++++++++++++++--- 1 file 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" } -- cgit v1.2.3