aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl14
1 files changed, 12 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 1c1516e..2c10b56 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -5,8 +5,18 @@ schedule IOUtil_Startup at STARTUP
LANG:C
} "IOUtil startup routine"
-if (! CCTK_Equals (recover, "no")) {
- schedule IOUtil_RecoverGH at CCTK_RECOVER_VARIABLES {
+if (! CCTK_Equals (recover, "no"))
+{
+ schedule IOUtil_RecoverGH at CCTK_RECOVER_VARIABLES
+ {
LANG:C
} "Checkpoint recovery routine"
}
+
+if (*recover_ID_files)
+{
+ schedule IOUtil_RecoverIDFromDatafiles at CCTK_RECOVER_VARIABLES after IOUtil_RecoverGH
+ {
+ LANG:C
+ } "Initial data recovery routine"
+}