aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-28 09:39:13 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-28 09:39:13 +0000
commitc51f2c3449374daea25d4c2afab74c7262a96fb4 (patch)
treee32e3bbf424cbd1f7ff2d8029aa2279761bf6530 /schedule.ccl
parent8dc46da98f6aeae4d03345246b82dcb25c259829 (diff)
Schedule the filereader initial data recovery routine
at CCTK_RECOVER_VARIABLES after IOUtil_RecoverGH. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@65 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
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"
+}