aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@d576a68a-b34a-40ae-82fc-004fa1a9d16f>2010-01-23 22:04:37 +0000
committerschnetter <schnetter@d576a68a-b34a-40ae-82fc-004fa1a9d16f>2010-01-23 22:04:37 +0000
commitbc4ffa8adec5e1e009f9e7b99d57a44d193a0ce0 (patch)
tree4e8c7756bb46d4532e1a17c2382b34a430407ec8
parent3ed17f482883b6adcc813b59416e3dce72be86bd (diff)
Ensure ADMBase_PostInitial is scheduled after ADMBase_InitialData.
Improve comments. git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMBase/trunk@53 d576a68a-b34a-40ae-82fc-004fa1a9d16f
-rw-r--r--schedule.ccl10
1 files changed, 5 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index ce70686..328479d 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -95,13 +95,13 @@ SCHEDULE group ADMBase_InitialGauge at CCTK_INITIAL after ADMBase_InitialData
{
} "Schedule group for the ADM initial gauge condition"
-SCHEDULE group ADMBase_PostInitial at CCTK_INITIAL after ADMBase_InitialGauge
+SCHEDULE group ADMBase_PostInitial at CCTK_INITIAL after (ADMBase_InitialData ADMBase_InitialGauge)
{
} "Schedule group for modifying the ADM initial data, such as e.g. adding noise"
# Initial data for the spatial slices
-if(CCTK_Equals(initial_data, "Cartesian Minkowski"))
+if (CCTK_Equals(initial_data, "Cartesian Minkowski"))
{
SCHEDULE ADMBase_CartesianMinkowski in ADMBase_InitialData
{
@@ -111,7 +111,7 @@ if(CCTK_Equals(initial_data, "Cartesian Minkowski"))
# Initial data for the lapse
-if(CCTK_Equals(initial_lapse, "one"))
+if (CCTK_Equals(initial_lapse, "one"))
{
SCHEDULE ADMBase_LapseOne in ADMBase_InitialGauge
{
@@ -119,8 +119,8 @@ if(CCTK_Equals(initial_lapse, "one"))
} "Set the lapse to 1 at all points"
}
-# Do we have storage for the shift ?
-if (!CCTK_Equals(initial_shift, "none"))
+# Do we have storage for the shift?
+if (! CCTK_Equals(initial_shift, "none"))
{
SCHEDULE ADMBase_SetShiftStateOn at CCTK_BASEGRID
{