aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 68492fbb24389f1ccbaa3a269091a9f0eef9710f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Schedule definitions for thorn SpaceMask
# $Header$

if (use_mask)
{
  STORAGE: space_mask_group

  schedule MaskZero at CCTK_INITIAL
  {
    LANG: C
  } "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"

}