summaryrefslogtreecommitdiff
path: root/src/include/cctk_Coord.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-30 14:44:30 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-30 14:44:30 +0000
commite6fdbbf80c9869db484ff191ddd6a21d5e9a654c (patch)
tree5f3ef822e188caa514abf0977b283b7bca07b4f5 /src/include/cctk_Coord.h
parent0499b484cbfc8590e5c999f367fb27c40737bb5b (diff)
Routines returning coordinate ranges take a 'const cGH *' as an argument
since they shouldn't modify the GH. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2440 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Coord.h')
-rw-r--r--src/include/cctk_Coord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/cctk_Coord.h b/src/include/cctk_Coord.h
index 08670dc8..7137e9f2 100644
--- a/src/include/cctk_Coord.h
+++ b/src/include/cctk_Coord.h
@@ -36,21 +36,21 @@ int CCTK_CoordSystemHandle(const char *systemname);
const char *CCTK_CoordSystemName(int handle);
-int CCTK_CoordRange(cGH *GH,
+int CCTK_CoordRange(const cGH *GH,
CCTK_REAL *coord_lower,
CCTK_REAL *coord_upper,
int coord_dir,
const char *coord_name,
const char *system_name);
-int CCTK_CoordRangePhysIndex (cGH *GH,
+int CCTK_CoordRangePhysIndex (const cGH *GH,
int *lower,
int *upper,
int coorddir,
const char *coordname,
const char *systemname);
-int CCTK_CoordLocalRange(cGH *GH,
+int CCTK_CoordLocalRange(const cGH *GH,
CCTK_REAL *lower,
CCTK_REAL *upper,
int coord_dir,