aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: 30bf59541bda6b7d7de3b8623c2e6e5d8339934c (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
 /*@@
   @file      Startup.c
   @date      
   @author    Gabrielle Allen
   @desc 
              Register banner 
   @enddesc 
   @version $Header$
 @@*/

#include "cctk.h"

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

CCTK_FILEVERSION(CactusWave_WaveToyC_Startup_c)

int WaveToyC_Startup(void);

 /*@@
   @routine    WaveToyC_Startup
   @date       
   @author     Gabrielle Allen
   @desc 
   
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int WaveToyC_Startup(void)
{

   const char *banner = "WaveToyC: Evolutions of a Scalar Field";

   CCTK_RegisterBanner(banner);

   return 0;
}