aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp/src/interp.hh
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetInterp/src/interp.hh')
-rw-r--r--Carpet/CarpetInterp/src/interp.hh29
1 files changed, 29 insertions, 0 deletions
diff --git a/Carpet/CarpetInterp/src/interp.hh b/Carpet/CarpetInterp/src/interp.hh
new file mode 100644
index 000000000..db0d1360a
--- /dev/null
+++ b/Carpet/CarpetInterp/src/interp.hh
@@ -0,0 +1,29 @@
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetInterp/src/interp.hh,v 1.2 2004/05/21 18:12:23 schnetter Exp $
+
+#ifndef CARPETINTERP_HH
+#define CARPETINTERP_HH
+
+#include "cctk.h"
+
+#include "interp.h"
+
+namespace CarpetInterp {
+
+ int
+ InterpGridArrays (cGH const * const cGH,
+ int const N_dims,
+ int const local_interp_handle,
+ int const param_table_handle,
+ int const coord_system_handle,
+ int const N_interp_points,
+ int const interp_coords_type_code,
+ void const * const interp_coords [],
+ int const N_input_arrays,
+ CCTK_INT const input_array_variable_indices [],
+ int const N_output_arrays,
+ CCTK_INT const output_array_type_codes [],
+ void * const output_arrays []);
+
+} // namespace CarpetInterp
+
+#endif // !defined(CARPETINTERP_HH)