aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: ab3b15131e0d1ec58788f0f38b47fb93d1d05214 (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 before SphericalSurface_HasBeenSet
  {
    LANG: C
    OPTIONS: GLOBAL
  } "calculate new location of punctures"
  
  SCHEDULE update_punc_loc at CCTK_POSTSTEP after PunctureTracker before SphericalSurface_HasBeenSet
  {
    LANG: C
    OPTIONS: GLOBAL
  } "update new location of punctures"
}