aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: a846e2afb317baf99542e9e1684e1cf1d909235c (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
/*@@
  @file      Startup.c
  @date      Sun Jul 04 1999
  @author    Thomas Radke
  @desc
             Startup routines for LocalInterp/UniformCartesian
  @enddesc

  @history
  @date      22 Jan 2002
  @author    Jonathan Thornburg
  @hdesc     Move all local-interpolation code from LocalInterp to here
  @endhistory

  @version   $Header$
  @@*/

#include "cctk.h"
#include "Interpolate.h"

/* the rcs ID and its dummy function to use it */
static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusBase_LocalInterp_Startup_c)


/********************************************************************
 ***************    External Routine Prototypes   *******************
 ********************************************************************/
int LocalInterp_Startup(void);


/*@@
  @routine   LocalInterp_Startup
  @date      Sun Jul 04 1999
  @author    Thomas Radke
  @desc
             The startup registration routine for LocalInterp.
             Registers the "uniform cartesian" interpolation operator
             with the flesh.
  @enddesc
  @calls     CCTK_InterpRegisterOpLocalUniform
  @@*/
int LocalInterp_Startup (void)
{
  CCTK_InterpRegisterOpLocalUniform (LocalInterp_InterpLocalUniform,
                                     "uniform cartesian", CCTK_THORNSTRING);
  return 0;
}