aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: 50c665129e293df37c4b1e1a26a5877380bc3362 (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
 /*@@
   @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)

void WaveToyC_Startup(void);

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

@@*/
void WaveToyC_Startup(void)
{

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

   CCTK_RegisterBanner(banner);
}