summaryrefslogtreecommitdiff
path: root/src/include/cctk_Coord.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-07-04 18:56:52 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-07-04 18:56:52 +0000
commit62ef90d93fce9ef646a396729a65b2f0e9ced74c (patch)
tree46b58bde867269259c09334b39524b38c24fc4b0 /src/include/cctk_Coord.h
parent5f55c8e114738740d691b9fa8ec4aa66a3db0bb5 (diff)
New Coord API for registering the physical range of indices for coordinates.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2271 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Coord.h')
-rw-r--r--src/include/cctk_Coord.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/include/cctk_Coord.h b/src/include/cctk_Coord.h
index b3b33bbc..e5c4c660 100644
--- a/src/include/cctk_Coord.h
+++ b/src/include/cctk_Coord.h
@@ -45,6 +45,13 @@ int CCTK_CoordRange(cGH *GH,
const char *coord_name,
const char *system_name);
+int CCTK_CoordRangePhysIndex (cGH *GH,
+ int *lower,
+ int *upper,
+ int coorddir,
+ const char *coordname,
+ const char *systemname);
+
int CCTK_CoordLocalRange(cGH *GH,
CCTK_REAL *lower,
CCTK_REAL *upper,
@@ -59,6 +66,13 @@ int CCTK_CoordRegisterRange(cGH *GH,
const char *coord_name,
const char *system_name);
+int CCTK_CoordRegisterRangePhysIndex(cGH *GH,
+ int coord_min,
+ int coord_max,
+ int coord_dir,
+ const char *coord_name,
+ const char *system_name);
+
#ifdef __cplusplus
}
#endif