aboutsummaryrefslogtreecommitdiff
path: root/src/coordbaseGH.h
diff options
context:
space:
mode:
authorrideout <rideout@0337457d-221f-4ee6-a5f0-14255d5370d8>2003-08-22 20:40:40 +0000
committerrideout <rideout@0337457d-221f-4ee6-a5f0-14255d5370d8>2003-08-22 20:40:40 +0000
commit39408b904dba508df668f77687fad77626383917 (patch)
tree3034d29e8f971e0b405ef6d7c3352ef47bea1057 /src/coordbaseGH.h
parent133ab3b0d72753248e8808c9e646a8fa5422f713 (diff)
CoordBase thorn, which implements the Coordinate spec
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CoordBase/trunk@2 0337457d-221f-4ee6-a5f0-14255d5370d8
Diffstat (limited to 'src/coordbaseGH.h')
-rw-r--r--src/coordbaseGH.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/coordbaseGH.h b/src/coordbaseGH.h
new file mode 100644
index 0000000..d07ef4d
--- /dev/null
+++ b/src/coordbaseGH.h
@@ -0,0 +1,32 @@
+ /*@@
+ @header coordbaseGH.h
+ @date Sun Sept 22 2002
+ @author Gabrielle Allen
+ @desc
+ The extensions to the GH structure from CoordBase
+ @version $Header$
+ @@*/
+
+#ifndef _COORDBASE_COORDBASEGH_H_
+#define _COORDBASE_COORDBASEGH_H_ 1
+
+#include "util_Hash.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+typedef struct COORDBASEGH
+{
+ uHash *coordsystems; /* Hash table mapping coord systems to tables */
+ int *default_coord_systems; /* Default coord system for each dimension */
+ /* int max_dimension; Allocated size of default_coord_system
+ array (not used currently) */
+} coordbaseGH;
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif /* _COORDBASE_COORDBASEGH_H_ */