aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl21
1 files changed, 21 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index d5d569f..9725db8 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,6 +1,26 @@
# Schedule definitions for thorn IDScalarWave
# $Header$
+
+if (CCTK_Equals(binary_source,"yes")||CCTK_Equals(binary_source,"fast"))
+{
+ schedule WaveBinary at EVOL after WaveToyF77_Evolution
+ {
+ STORAGE: wavetoy::scalarevolve
+ LANG: Fortran
+ } "Provide binary source during evolution"
+}
+
+if (CCTK_Equals(binary_source,"slow"))
+{
+ schedule WaveBinarySlow at EVOL after WaveToyF77_Evolution
+ {
+ STORAGE: wavetoy::scalarevolve
+ LANG: Fortran
+ } "Provide binary source during evolution"
+}
+
+
schedule IDScalarWave_CheckParameters at CCTK_PARAMCHECK
{
LANG: Fortran
@@ -12,3 +32,4 @@ schedule IDScalarWave_InitialData at CCTK_INITIAL
COMMUNICATION: wavetoy::scalarevolve
LANG: Fortran
} "Initial data for 3D wave equation"
+