summaryrefslogtreecommitdiff
path: root/src/include/cctk_Coord.h
blob: 24961ea3c073ab3ada19f1e47c38caebdf7812cb (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
 /*@@
   @header    cctk_Coord.h
   @date      Mon April 12 1999
   @author    Gabrielle Allen
   @desc 
   Prototypes and constants for coordinate functions
   @enddesc 
   @version $Header$
 @@*/

#ifndef _CCTK_COORD_H_
#define _CCTK_COORD_H_

#ifdef __cplusplus 
extern "C" {
#endif

int CCTK_CoordIndex(const char *name);

int CCTK_CoordRange( cGH *GH, CCTK_REAL *lower, CCTK_REAL *upper, const char *name);

int CCTK_RegisterCoord(int dir, const char *gfname, const char *coordname);

int CCTK_RegisterCoordI(int dir, int index, const char *name);

int CCTK_RegisterCoordRange( cGH *GH, CCTK_REAL min, CCTK_REAL max, const char *coordname);

#ifdef __cplusplus 
}
#endif

#endif