aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@a2659f00-0f4f-0410-9214-a4596bbb8a4f>2007-09-21 15:47:13 +0000
committerschnetter <schnetter@a2659f00-0f4f-0410-9214-a4596bbb8a4f>2007-09-21 15:47:13 +0000
commit83b6898036608da56fe70d8654019a38f9dfca81 (patch)
treeb3ff961b41bd093527446478637d8397194afac7 /schedule.ccl
parentf87829d2acde4a9913037ef93954905a0d85bf3f (diff)
Rewrite puncture tracker
git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/PunctureTracker/trunk@6 a2659f00-0f4f-0410-9214-a4596bbb8a4f
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl38
1 files changed, 16 insertions, 22 deletions
diff --git a/schedule.ccl b/schedule.ccl
index ab3b151..cce26af 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,27 +1,21 @@
# Schedule definitions for thorn PunctureTracker
-# $Header$
+STORAGE: pt_loc pt_loc_p
-storage: pt_loc[2]
-storage: pt_shift
+SCHEDULE PunctureTracker_Init AT initial
+{
+ LANG: C
+ OPTIONS: GLOBAL
+} "Calculate initial location of punctures"
-if(pt_track_punctures){
+SCHEDULE PunctureTracker_Track AT evol AFTER MoL_Evolution
+{
+ LANG: C
+ OPTIONS: GLOBAL
+} "Calculate new location of 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"
-}
+SCHEDULe PunctureTracker_SetPositions AT preregrid
+{
+ LANG: C
+ OPTIONS: global
+} "Set positions of refined regions"