aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: fc3abeae8348079d60ab23e957350b8a31ac4269 (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
52
53
54
55
56
57
58
59
60
61
62
63
# Schedule definitions for thorn SpaceMask
# $Header$

if (use_mask)
{
  STORAGE: space_mask_group

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

  schedule MaskSym at CCTK_WRAGH
  {
    LANG: C
    OPTIONS: global
  } "Set grid symmetries for mask"

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

  schedule MaskZero at CCTK_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_WRAGH
  {
    LANG: C
    OPTIONS: global
  } "Set grid symmetries for emask (compatibility mode)"

  schedule MaskOne at CCTK_BASEGRID
  {
    LANG: C
  } "Set old style mask to one"

  schedule CheckMask at CCTK_POSTSTEP
  {
    LANG: C
  } "Ensure that all mask values are legal"

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

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

}