summaryrefslogtreecommitdiff
path: root/src/main/OverloadMain.c
blob: 173fe967c93c23fb0b470796cb34f2db4090b317 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
 /*@@
   @file      Overload.c
   @date      Thu Feb  4 09:01:18 1999
   @author    Tom Goodale
   @desc 
   Contains routines to overload the main functions.
   Uses the overload macros to make sure of consistency and
   to save typing !
   @enddesc 
   @version $Header$
 @@*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "cctk_Flesh.h"
#include "cctk_WarnLevel.h"
#include "CactusRegister.h"
#include "OverloadMacros.h"

static const char *rcsid="$Header$";

CCTK_FILEVERSION(main_OverloadMain_c);

/* Define the prototypes for the dummy functions. */
#define OVERLOADABLE(name) OVERLOADABLE_DUMMYPROTOTYPE(name)

  /* These ones actually have defaults. */
#define CCTKi_DummyInitialise       CactusDefaultInitialise
#define CCTKi_DummyEvolve           CactusDefaultEvolve
#define CCTKi_DummyShutdown         CactusDefaultShutdown
#define CCTKi_DummyMainLoopIndex    CactusDefaultMainLoopIndex
#define CCTKi_DummySetMainLoopIndex CactusDefaultSetMainLoopIndex

#include "MainOverloadables.h"

  /* Reset the #define to prevent complications. */
#undef CCTKi_DummyInitialise 
#undef CCTKi_DummyEvolve     
#undef CCTKi_DummyShutdown   
#undef CCTKi_DummyMainLoopIndex
#undef CCTKi_DummySetMainLoopIndex

#undef OVERLOADABLE


/* Create the overloadable function variables and the 
 * functions allowing the variables to be set.
 */
#define OVERLOADABLE(name) OVERLOADABLE_FUNCTION(name)

#include "MainOverloadables.h"

#undef OVERLOADABLE

 /*@@
   @routine    CCTKi_SetupMainFunctions
   @date       Thu Feb  4 09:02:49 1999
   @author     Tom Goodale
   @desc 
   Set any main function which hasn't been overloaded to the default.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int CCTKi_SetupMainFunctions(void)
{

#define OVERLOADABLE(name) OVERLOADABLE_INITIALISE(name)

  /* These ones actually have defaults. */
#define CCTKi_DummyInitialise       CactusDefaultInitialise
#define CCTKi_DummyEvolve           CactusDefaultEvolve
#define CCTKi_DummyShutdown         CactusDefaultShutdown
#define CCTKi_DummyMainLoopIndex    CactusDefaultMainLoopIndex
#define CCTKi_DummySetMainLoopIndex CactusDefaultSetMainLoopIndex

#include "MainOverloadables.h"

  /* Reset the #define to prevent complications. */
#undef CCTKi_DummyInitialise 
#undef CCTKi_DummyEvolve     
#undef CCTKi_DummyShutdown   
#undef CCTKi_DummyMainLoopIndex
#undef CCTKi_DummySetMainLoopIndex

#undef OVERLOADABLE

  return 0;
}