aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp/src/interp.hh
blob: ff81643f606aa834885d34d5397754c0a7d98974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetInterp/src/interp.hh,v 1.1 2003/04/30 12:37:31 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)