aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 41196f86f2234d7c63dc200ae966efab82f9326f (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Schedule definitions for thorn SpaceMask
# $Header$

if (use_mask)
{
  STORAGE: space_mask_group

  schedule SetupSpaceMaskRegistry at CCTK_STARTUP
  {
    LANG: C
  } "Initialise spacemask registry"

  schedule MaskZero at CCTK_INITIAL
  {
    LANG: C
  } "Initialise mask to zero"

  schedule MaskSym at CCTK_BASEGRID
  {
    LANG: C
  } "Set grid symmetries for mask"

#Initialize the mask again for mesh refinement
  schedule MaskZero at POSTREGRID
  {
    LANG: C
  } "Initialise mask to zero"

  #
  # 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 emask (compatibility mode)"

  schedule MaskOne at CCTK_INITIAL
  {
    LANG: C
  } "Set mask to one"

#Initialize the mask again for mesh refinement
  schedule MaskOne at POSTREGRID
  {
    LANG: C
  } "Set mask to one"

}