aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
{