aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2002-11-06 19:38:28 +0000
committertradke <tradke@94b1c47f-dcfd-45ef-a468-0854c0e9e350>2002-11-06 19:38:28 +0000
commitac35fd229db5c6b5b6bfdb20e75ad640e55b2219 (patch)
treee700ea8be76187619dd37da089a115e8145b77b4
parent3299a1f02f0c7d15dd98fbb9ccf597e0428704f0 (diff)
Use the "Hyperslab_*" function aliases.
You must also update CactusPUGH/PUGHSlab now. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOASCII/trunk@137 94b1c47f-dcfd-45ef-a468-0854c0e9e350
-rw-r--r--interface.ccl27
1 files changed, 25 insertions, 2 deletions
diff --git a/interface.ccl b/interface.ccl
index 061cb1c..1354eb3 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -2,6 +2,29 @@
# $Header$
implements: IOASCII
-inherits: IO, hyperslab
+inherits: IO, Hyperslab
-USES INCLUDE HEADER: Hyperslab.h \ No newline at end of file
+CCTK_INT FUNCTION Hyperslab_GetList const CCTK_POINTER cctkGH, \
+ CCTK_INT mapping_handle, \
+ CCTK_INT num_arrays, \
+ const CCTK_INT *procs, \
+ const CCTK_INT *vindices, \
+ const CCTK_INT *timelevels, \
+ const CCTK_INT *hdatatypes, \
+ CCTK_POINTER const *hdata, \
+ CCTK_INT *retvals
+CCTK_INT FUNCTION Hyperslab_DefineGlobalMappingByIndex const CCTK_POINTER cctkGH, \
+ CCTK_INT vindex, \
+ CCTK_INT hdim, \
+ const CCTK_INT *direction, \
+ const CCTK_INT *origin, \
+ const CCTK_INT *extent, \
+ const CCTK_INT *downsample, \
+ CCTK_INT table_handle, \
+ CCTK_FPOINTER conversion_fn, \
+ CCTK_INT *hsize
+CCTK_INT FUNCTION Hyperslab_FreeMapping CCTK_INT mapping_handle
+
+USES FUNCTION Hyperslab_GetList
+USES FUNCTION Hyperslab_DefineGlobalMappingByIndex
+USES FUNCTION Hyperslab_FreeMapping