aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 9c4e95b2a89b806faeb457b7b5af852a42f1b992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Schedule definitions for thorn IOUtil
# $Header$

schedule IOUtil_Startup at STARTUP after Driver_Startup
{
  LANG:C
} "Startup routine"

if (! CCTK_Equals (recover, "no"))
{
  schedule IOUtil_RecoverGH at CCTK_RECOVER_VARIABLES
  {
    LANG:C
  } "Checkpoint recovery routine"
}

if (*filereader_ID_files)
{
  schedule IOUtil_RecoverIDFromDatafiles at CCTK_RECOVER_VARIABLES after IOUtil_RecoverGH
  {
    LANG:C
  } "Initial data recovery routine"
}

if (! CCTK_Equals (parfile_write, "no") && parfile_update_every)
{
  schedule IOUtil_UpdateParFile at POSTSTEP
  {
    LANG:C
  } "Append steered parameters to parameter file"
}