summaryrefslogtreecommitdiff
path: root/src/include/cctk_Coord.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-14 10:42:10 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-14 10:42:10 +0000
commitd25d4b749b0fcc3e3c55505defe087cfb12ec53b (patch)
tree0db2a42badff7dea017762458516985748753165 /src/include/cctk_Coord.h
parent833c9c03aaa102308f475b795b860238c7173512 (diff)
Added prototypes of new routines to deal with coordinate system handles.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2019 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Coord.h')
-rw-r--r--src/include/cctk_Coord.h30
1 files changed, 18 insertions, 12 deletions
diff --git a/src/include/cctk_Coord.h b/src/include/cctk_Coord.h
index 6de96438..b3b33bbc 100644
--- a/src/include/cctk_Coord.h
+++ b/src/include/cctk_Coord.h
@@ -19,39 +19,45 @@ extern "C"
int CCTK_CoordRegisterSystem(int dim, const char *systemname);
int CCTK_CoordRegisterData(int dir,
- const char *gv,
- const char *name,
- const char *systemname);
+ const char *gv,
+ const char *name,
+ const char *systemname);
+
+int CCTK_CoordSystemHandle (const char *systemname);
int CCTK_CoordIndex(int dir,
- const char *name,
- const char *systemname);
+ const char *name,
+ const char *systemname);
int CCTK_CoordDir(const char *name,
- const char *systemname);
+ const char *systemname);
int CCTK_CoordSystemDim(const char *systemname);
+int CCTK_CoordSystemHande(const char *systemname);
+
+const char *CCTK_CoordSystemName(int handle);
+
int CCTK_CoordRange(cGH *GH,
CCTK_REAL *coord_lower,
CCTK_REAL *coord_upper,
- int coord_dir,
+ int coord_dir,
const char *coord_name,
- const char *system_name);
+ const char *system_name);
int CCTK_CoordLocalRange(cGH *GH,
CCTK_REAL *lower,
CCTK_REAL *upper,
- int coord_dir,
+ int coord_dir,
const char *coord_name,
- const char *system_name);
+ const char *system_name);
int CCTK_CoordRegisterRange(cGH *GH,
CCTK_REAL coord_min,
CCTK_REAL coord_max,
- int coord_dir,
+ int coord_dir,
const char *coord_name,
- const char *system_name);
+ const char *system_name);
#ifdef __cplusplus
}