From 83b6898036608da56fe70d8654019a38f9dfca81 Mon Sep 17 00:00:00 2001 From: schnetter Date: Fri, 21 Sep 2007 15:47:13 +0000 Subject: Rewrite puncture tracker git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/PunctureTracker/trunk@6 a2659f00-0f4f-0410-9214-a4596bbb8a4f --- schedule.ccl | 38 ++++++++++++++++---------------------- 1 file changed, 16 insertions(+), 22 deletions(-) (limited to 'schedule.ccl') 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" -- cgit v1.2.3