aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorallen <allen@6a3ddf76-46e1-4315-99d9-bc56cac1ef84>2002-05-08 03:50:24 +0000
committerallen <allen@6a3ddf76-46e1-4315-99d9-bc56cac1ef84>2002-05-08 03:50:24 +0000
commitb64c391c54f53cbca366dbdbaa993d39304e00d5 (patch)
tree549ef5b2a60dcbd47f73ad0aac212720c82be0e0 /schedule.ccl
parenta0504d965fdb433939d56b68ea98c5c178c5773c (diff)
schedule initial data at ADMBase_InitialData
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@114 6a3ddf76-46e1-4315-99d9-bc56cac1ef84
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl23
1 files changed, 9 insertions, 14 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 80938f2..b4fef06 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -16,57 +16,52 @@ if (CCTK_Equals(initial_data,"schwarzschild") ||
if (CCTK_Equals(initial_data,"schwarzschild"))
{
- schedule Schwarzschild at CCTK_INITIAL
+ schedule Schwarzschild in ADMBase_InitialData
{
LANG: C
} "Construct initial data for a single Schwarzschild black hole"
-
}
-
-if (CCTK_Equals(initial_data,"kerr"))
+else if (CCTK_Equals(initial_data,"kerr"))
{
# The Kerr stuff uses the conformal factor internally, so
# so make sure that the conformal factor has storage during
# this routine
- schedule KerrID at CCTK_INITIAL
+ schedule KerrID in ADMBase_InitialData
{
STORAGE: confac
LANG: C
} "Construct initial data for a single Kerr black hole"
}
-
-if (CCTK_Equals(initial_data,"bl_bh"))
+else if (CCTK_Equals(initial_data,"bl_bh"))
{
# The Brill-Lindquist stuff uses the conformal factor internally, so
# so make sure that the conformal factor has storage during
# this routine
- schedule BrillLindquist at CCTK_INITIAL
+ schedule BrillLindquist in ADMBase_InitialData
{
STORAGE: confac
LANG: C
} "Construct initial data for Brill Lindquist black holes"
}
-
-if (CCTK_Equals(initial_data,"misner_bh"))
+else if (CCTK_Equals(initial_data,"misner_bh"))
{
# The Misner stuff uses the conformal factor internally, so
# so make sure that the conformal factor has storage during
# this routine
- schedule Misner_standard at CCTK_INITIAL
+ schedule Misner_standard in ADMBase_InitialData
{
STORAGE: confac
LANG: C
} "Construct initial data for two Misner black holes"
}
-
-if (CCTK_Equals(initial_data,"multiple_misner_bh"))
+else if (CCTK_Equals(initial_data,"multiple_misner_bh"))
{
STORAGE: confac
- schedule Misner_multiple at CCTK_INITIAL
+ schedule Misner_multiple in ADMBase_InitialData
{
LANG: C
} "Construct initial data for multiple Misner black holes"