aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2004-10-05 11:24:38 +0000
committerknarf <knarf@b2a53a04-0f4f-0410-87ed-f9f25ced00cf>2004-10-05 11:24:38 +0000
commitea198334790a570ca3e04b15b9415624933419eb (patch)
tree857e13759700c4320e00d168d6760d3a8e064cba /schedule.ccl
parent3809281214a7ca69522f71875642def911b608d5 (diff)
- actually use the extended initial_data
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/TwoPunctures/trunk@21 b2a53a04-0f4f-0410-87ed-f9f25ced00cf
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl27
1 files changed, 15 insertions, 12 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 37262fb..52466ee 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,17 +1,20 @@
# Schedule definitions for thorn TwoPunctures
# $Header$
-if (keep_u_around) {
- STORAGE: puncture_u
-}
-
-SCHEDULE TwoPunctures_ParamCheck AT PARAMCHECK
+if (CCTK_Equals(initial_data, "twopunctures"))
{
- LANG: C
-} "Check parameters and thorn needs"
+ if (keep_u_around) {
+ STORAGE: puncture_u
+ }
-SCHEDULE TwoPunctures IN ADMBase_InitialData
-{
- LANG: C
- STORAGE: puncture_u
-} "Create puncture black hole initial data"
+ SCHEDULE TwoPunctures_ParamCheck AT PARAMCHECK
+ {
+ LANG: C
+ } "Check parameters and thorn needs"
+
+ SCHEDULE TwoPunctures IN ADMBase_InitialData
+ {
+ LANG: C
+ STORAGE: puncture_u
+ } "Create puncture black hole initial data"
+}