aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetInterp/src/interp.hh
blob: 47c5b39f96fb08770cd077801244c4056a21a0ed (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
#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)