From b64c391c54f53cbca366dbdbaa993d39304e00d5 Mon Sep 17 00:00:00 2001 From: allen Date: Wed, 8 May 2002 03:50:24 +0000 Subject: schedule initial data at ADMBase_InitialData git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/IDAnalyticBH/trunk@114 6a3ddf76-46e1-4315-99d9-bc56cac1ef84 --- schedule.ccl | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'schedule.ccl') 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" -- cgit v1.2.3