aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl27
1 files changed, 23 insertions, 4 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 9923239..68492fb 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,15 +1,34 @@
# Schedule definitions for thorn SpaceMask
# $Header$
-if (use_mask)
+if (use_mask)
{
- STORAGE: mask
- schedule MaskOne at CCTK_INITIAL
+ STORAGE: space_mask_group
+
+ schedule MaskZero at CCTK_INITIAL
{
LANG: C
- } "Set mask to one"
+ } "Initialise mask to zero"
+
schedule MaskSym at CCTK_BASEGRID
{
LANG: C
} "Set grid symmetries for mask"
+
+ #
+ # The following is for compatibility with current excision routines,
+ # and will be removed once they are up-to-date with the new mask
+ # scheme.
+ #
+ STORAGE: mask
+ schedule MaskSym_emask at CCTK_BASEGRID
+ {
+ LANG: C
+ } "Set grid symmetries for mask"
+
+ schedule MaskOne at CCTK_INITIAL
+ {
+ LANG: C
+ } "Set mask to one"
+
}