aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: f95f829bceff900725311e15c50736e739a07f8c (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
# Schedule definitions for thorn PunctureTracker
# $Header$


storage: pt_loc[2]
storage: pt_shift

if(pt_track_punctures){

  SCHEDULE PunctureTracker_init at CCTK_INITIAL
  {
    LANG: C
    OPTIONS: GLOBAL
  } "calculate new location of punctures"

  SCHEDULE PunctureTracker at CCTK_POSTSTEP
  {
    LANG: C
    OPTIONS: GLOBAL
  } "calculate new location of punctures"
  
  SCHEDULE update_punc_loc at CCTK_POSTSTEP after PunctureTracker
  {
    LANG: C
    OPTIONS: GLOBAL
  } "update new location of punctures"
}