aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2002-04-17 18:01:50 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2002-04-17 18:01:50 +0000
commite7b5e1e51708eca4912aed95860f06a8b5a522f1 (patch)
treef6062873e2e0cf56b3e64fe6889fb7c9338b3fad /schedule.ccl
parentf7f7a801866271138a1888a493ae0c50ca372b52 (diff)
Tidying up the code to make it consistent with the structure in IOHDF5.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@230 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl15
1 files changed, 8 insertions, 7 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 3d432c5..ae3c1e7 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,14 +1,15 @@
# Schedule definitions for thorn IOFlexIO
+# $Header$
########################################################################
-### register IOFlexIO routines
+### register IOFlexIO startup/termination routines
########################################################################
schedule IOFlexIO_Startup at STARTUP after ( IOUtil_Startup Driver_Startup )
{
LANG:C
} "Startup routine"
-schedule IOFlexIO_TerminateGH at CCTK_TERMINATE after IOFlexIO_TerminationDumpGH
+schedule IOFlexIO_TerminateGH at CCTK_TERMINATE after IOFlexIO_TerminationCheckpoint
{
LANG:C
} "Closing open IEEEIO files"
@@ -24,19 +25,19 @@ schedule IOFlexIO_Choose2D at BASEGRID after SpatialCoordinates
########################################################################
-### register checkpointing routines
+### register checkpoint/recovery routines
########################################################################
-schedule IOFlexIO_InitialDataDumpGH at CCTK_CPINITIAL
+schedule IOFlexIO_InitialDataCheckpoint at CCTK_CPINITIAL
{
LANG:C
} "Initial data checkpoint routine"
-schedule IOFlexIO_ConditionallyDumpGH at CCTK_CHECKPOINT
+schedule IOFlexIO_EvolutionCheckpoint at CCTK_CHECKPOINT
{
LANG:C
-} "Regular checkpoint routine"
+} "Evolution data checkpoint routine"
-schedule IOFlexIO_TerminationDumpGH at CCTK_TERMINATE BEFORE Driver_Terminate
+schedule IOFlexIO_TerminationCheckpoint at CCTK_TERMINATE BEFORE Driver_Terminate
{
LANG:C
} "Termination checkpoint routine"