aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetSlab/src/Get.hh
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@aei.mpg.de>2004-09-18 13:36:00 +0000
committerErik Schnetter <schnetter@aei.mpg.de>2004-09-18 13:36:00 +0000
commit91ec86281fe4c575df2cbff1ba088c75e01ccced (patch)
tree45bf563e269454879b85be605ec1481d17194beb /Carpet/CarpetSlab/src/Get.hh
parent837059042828992bd744de5a574e5c5237fdd7cb (diff)
Split hyperslabbing routines into multiple files
darcs-hash:20040918133657-891bb-69e4ea212109578a1e65b2e8b8632bb3dee276ce.gz
Diffstat (limited to 'Carpet/CarpetSlab/src/Get.hh')
-rw-r--r--Carpet/CarpetSlab/src/Get.hh36
1 files changed, 36 insertions, 0 deletions
diff --git a/Carpet/CarpetSlab/src/Get.hh b/Carpet/CarpetSlab/src/Get.hh
new file mode 100644
index 000000000..f12a7617e
--- /dev/null
+++ b/Carpet/CarpetSlab/src/Get.hh
@@ -0,0 +1,36 @@
+// $Header$
+
+#ifndef CARPETSLAB_GET_HH
+#define CARPETSLAB_GET_HH
+
+#include "cctk.h"
+
+namespace CarpetSlab {
+
+
+
+ extern "C" CCTK_INT
+ CarpetSlab_Get (CCTK_POINTER_TO_CONST const cctkGH,
+ CCTK_INT const mapping_handle,
+ CCTK_INT const proc,
+ CCTK_INT const vindex,
+ CCTK_INT const timelevel,
+ CCTK_INT const hdatatype,
+ CCTK_POINTER const hdata);
+
+ extern "C" CCTK_INT
+ CarpetSlab_GetList (CCTK_POINTER_TO_CONST const cctkGH,
+ CCTK_INT const mapping_handle,
+ CCTK_INT const num_arrays,
+ CCTK_INT const * const procs,
+ CCTK_INT const * const vindices,
+ CCTK_INT const * const timelevels,
+ CCTK_INT const * const hdatatypes,
+ CCTK_POINTER const * const hdata,
+ CCTK_INT * const retvals);
+
+
+
+} // namespace CarpetSlab
+
+#endif // !defined(CARPETSLAB_GET_HH)