source: issm/trunk-jpl/src/c/modules/InterpFromMeshToMesh3dx/InterpFromMeshToMesh3dx.h@ 13220

Last change on this file since 13220 was 13220, checked in by Eric.Larour, 13 years ago

CHG: adjustments to compile the Matlab and Python modules when ADOLC is on.
Had to template MeshPartitionx, because it's used in both modules and the core code.
Had to template Contour too, same reason.
Had to default to ISSMPDouble type for modules such as InterpFromMesh2d* InterpFromGridToMeshx*, etc ..., which
only show up in the Matlab modules.

File size: 570 bytes
Line 
1/*!\file InterpFromMeshToMesh3dx.h
2 * \brief: header file for Data interpolation routines.
3 */
4
5#ifndef _INTERPFROMMESHTOMESH3DX_H
6#define _INTERPFROMMESHTOMESH3DX_H
7
8#include "../../toolkits/toolkits.h"
9#include "../../classes/objects/objects.h"
10
11int InterpFromMeshToMesh3dx( Vector<IssmPDouble>** pdata_prime,double* index_data, double* x_data, double* y_data, double* z_data, int nods_data,int nels_data, double* data, int data_length, double* x_prime, double* y_prime, double* z_prime, int nods_prime,double default_value);
12
13#endif /* _INTERPFROMMESHTOMESH3DX_H */
14
Note: See TracBrowser for help on using the repository browser.