aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 3b4e2c27753b63c5cda2c7b22120a35286b9aebc (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
32
33
34
35
36
37
38
39
40
41
# Schedule definitions for thorn pugh
# $Header$

schedule PUGH_Startup at STARTUP as Driver_Startup
{
  LANG:C
} "Startup routine"

schedule PUGH_Report at BASEGRID
{
  LANG:C
} "Report on PUGH set up"

if (timer_output)
{
  schedule PUGH_PrintTimingInfo at TERMINATE
  {
    LANG:C
  } "Print time spent in communication"
}

if (CCTK_Equals(storage_verbose,"yes") || CCTK_Equals(storage_verbose,"report") )
{
  schedule PUGH_PrintFinalStorageReport at TERMINATE
  {
    LANG:C
  } "Print storage information"
}

if (CCTK_Equals(storage_verbose,"yes") || CCTK_Equals(storage_verbose,"report"))
{
  schedule PUGH_PrintStorageReport at POSTSTEP
  {
    LANG:C
  } "Print storage information"
}

schedule PUGH_Terminate at TERMINATE as Driver_Terminate
{
  LANG:C
} "Termination routine"