aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorkoppitz <koppitz@a2659f00-0f4f-0410-9214-a4596bbb8a4f>2007-01-30 12:21:57 +0000
committerkoppitz <koppitz@a2659f00-0f4f-0410-9214-a4596bbb8a4f>2007-01-30 12:21:57 +0000
commit85e716cabbae5a1de9e7ce74eb88687ee5bb5f7c (patch)
treee1c7d1b8de7a70f1c3836ca23276f0a0db4fd9ef /schedule.ccl
parentdae348b3c48318435854dd96e85d2bc69e964219 (diff)
add PunctureTracker
git-svn-id: http://svn.aei.mpg.de/numrel/AEIThorns/PunctureTracker/trunk@2 a2659f00-0f4f-0410-9214-a4596bbb8a4f
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl27
1 files changed, 27 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
new file mode 100644
index 0000000..f95f829
--- /dev/null
+++ b/schedule.ccl
@@ -0,0 +1,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"
+}