aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
blob: 7d0ef2923a1487155c45b9eecddc905fff6712ed (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Schedule definitions for thorn Formaline

if (output_source)
{
  SCHEDULE Formaline_OutputSource AT wragh
  {
    LANG: C
  } "Output Cactus source tree"
}



if (collect_metadata)
{
  SCHEDULE Formaline_PrintIDs AT startup
  {
    LANG: C
    OPTIONS: meta
  } "Print the build and simulation ids"
  
  SCHEDULE GROUP RegisterPublishCallbacks
  {
  } "Tell Cactus that this group exists, but is not scheduled from here"
  
  SCHEDULE Formaline_RegisterPublishRDF_Callbacks IN RegisterPublishCallbacks
  {
    LANG: C
    OPTIONS: meta
  } "Register RDF callbacks for the Publish API"  

  SCHEDULE Formaline_RegisterWarnings AT wragh
  {
    LANG: C
    OPTIONS: meta
  } "Register to receive warnings and info messages from the flesh"
  
  SCHEDULE Formaline_AnnounceInitial AT wragh
  {
    LANG: C
    OPTIONS: global
  } "Put some meta information about the current run into permanent storage"
  
  SCHEDULE Formaline_AnnounceUpdate AT analysis
  {
    LANG: C
    OPTIONS: global
  } "Put some meta information about the current run into permanent storage"
  
  SCHEDULE Formaline_AnnounceFinal AT terminate
  {
    LANG: C
    OPTIONS: global
  } "Put some meta information about the current run into permanent storage"
  
  SCHEDULE GROUP UnregisterPublishCallbacks
  {
  } "Tell Cactus that this group exists, but is not scheduled from here"
  
  SCHEDULE Formaline_UnregisterPublishRDF_Callbacks IN UnregisterPublishCallbacks
  {
    LANG: C
    OPTIONS: meta
  } "Unregister RDF callbacks for the Publish API"

}