[3683] | 1 | /*! \file DoubleMatParam.h
|
---|
| 2 | * \brief: header file for triavertexinput object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | #ifndef _DOUBLEMATPARAM_H_
|
---|
| 7 | #define _DOUBLEMATPARAM_H_
|
---|
| 8 |
|
---|
| 9 | /*Headers:*/
|
---|
| 10 | /*{{{1*/
|
---|
[3715] | 11 | #ifdef HAVE_CONFIG_H
|
---|
[9320] | 12 | #include <config.h>
|
---|
[3715] | 13 | #else
|
---|
| 14 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
|
---|
| 15 | #endif
|
---|
| 16 |
|
---|
| 17 | #ifdef _SERIAL_
|
---|
| 18 | #include <mex.h>
|
---|
| 19 | #endif
|
---|
| 20 |
|
---|
[3683] | 21 | #include "./Param.h"
|
---|
[3775] | 22 | #include "../../include/include.h"
|
---|
[3683] | 23 | #include "../../shared/shared.h"
|
---|
| 24 | /*}}}*/
|
---|
| 25 |
|
---|
| 26 | class DoubleMatParam: public Param{
|
---|
| 27 |
|
---|
[10660] | 28 | protected:
|
---|
[3683] | 29 | int enum_type;
|
---|
[4852] | 30 | double* value;
|
---|
[3683] | 31 | int M;
|
---|
| 32 | int N;
|
---|
| 33 |
|
---|
| 34 | public:
|
---|
[4248] | 35 | /*DoubleMatParam constructors, destructors: {{{1*/
|
---|
[3683] | 36 | DoubleMatParam();
|
---|
| 37 | DoubleMatParam(int enum_type,IssmDouble* value,int M,int N);
|
---|
| 38 | ~DoubleMatParam();
|
---|
| 39 | /*}}}*/
|
---|
[4248] | 40 | /*Object virtual functions definitions:{{{1 */
|
---|
| 41 | void Echo();
|
---|
[3683] | 42 | void DeepEcho();
|
---|
[4248] | 43 | int Id();
|
---|
| 44 | int MyRank();
|
---|
[9777] | 45 | #ifdef _SERIAL_
|
---|
[4248] | 46 | void Marshall(char** pmarshalled_dataset);
|
---|
| 47 | int MarshallSize();
|
---|
[3683] | 48 | void Demarshall(char** pmarshalled_dataset);
|
---|
[9777] | 49 | #endif
|
---|
[9883] | 50 | int ObjectEnum();
|
---|
[4248] | 51 | Object* copy();
|
---|
[3683] | 52 | /*}}}*/
|
---|
[4248] | 53 | /*Param vritual function definitions: {{{1*/
|
---|
[9883] | 54 | int InstanceEnum(){return enum_type;}
|
---|
[8224] | 55 | void GetParameterValue(bool* pbool){_error_("DoubleMat param of enum %i (%s) cannot return a bool",enum_type,EnumToStringx(enum_type));}
|
---|
| 56 | void GetParameterValue(int* pinteger){_error_("DoubleMat param of enum %i (%s) cannot return an integer",enum_type,EnumToStringx(enum_type));}
|
---|
| 57 | void GetParameterValue(int** pintarray,int* pM){_error_("DoubleMat param of enum %i (%s) cannot return an array of integers",enum_type,EnumToStringx(enum_type));}
|
---|
[8646] | 58 | void GetParameterValue(int** pintarray,int* pM,int* pN);
|
---|
[8224] | 59 | void GetParameterValue(double* pdouble){_error_("DoubleMat param of enum %i (%s) cannot return a double",enum_type,EnumToStringx(enum_type));}
|
---|
| 60 | void GetParameterValue(char** pstring){_error_("DoubleMat param of enum %i (%s) cannot return a string",enum_type,EnumToStringx(enum_type));}
|
---|
[11425] | 61 | void GetParameterValue(char*** pstringarray,int* pM){_error_("DoubleMat param of enum %i (%s) cannot return a string arrayl",enum_type,EnumToStringx(enum_type));}
|
---|
[8224] | 62 | void GetParameterValue(double** pdoublearray,int* pM){_error_("DoubleMat param of enum %i (%s) cannot return a double array",enum_type,EnumToStringx(enum_type));}
|
---|
[3683] | 63 | void GetParameterValue(double** pdoublearray,int* pM,int* pN);
|
---|
[8224] | 64 | void GetParameterValue(double*** parray, int* pM,int** pmdims, int** pndims){_error_("DoubleMat param of enum %i (%s) cannot return a matrix array",enum_type,EnumToStringx(enum_type));}
|
---|
| 65 | void GetParameterValue(Vec* pvec){_error_("DoubleMat param of enum %i (%s) cannot return a Vec",enum_type,EnumToStringx(enum_type));}
|
---|
| 66 | void GetParameterValue(Mat* pmat){_error_("DoubleMat param of enum %i (%s) cannot return a Mat",enum_type,EnumToStringx(enum_type));}
|
---|
| 67 | void GetParameterValue(FILE** pfid){_error_("DoubleMat param of enum %i (%s) cannot return a FILE",enum_type,EnumToStringx(enum_type));}
|
---|
[4059] | 68 |
|
---|
[8224] | 69 | void SetValue(bool boolean){_error_("DoubleMat param of enum %i (%s) cannot hold a boolean",enum_type,EnumToStringx(enum_type));}
|
---|
| 70 | void SetValue(int integer){_error_("DoubleMat param of enum %i (%s) cannot hold an integer",enum_type,EnumToStringx(enum_type));}
|
---|
| 71 | void SetValue(double scalar){_error_("DoubleMat param of enum %i (%s) cannot hold a scalar",enum_type,EnumToStringx(enum_type));}
|
---|
| 72 | void SetValue(char* string){_error_("DoubleMat param of enum %i (%s) cannot hold a string",enum_type,EnumToStringx(enum_type));}
|
---|
| 73 | void SetValue(char** stringarray,int M){_error_("DoubleMat param of enum %i (%s) cannot hold a string array",enum_type,EnumToStringx(enum_type));}
|
---|
| 74 | void SetValue(double* doublearray,int M){_error_("DoubleMat param of enum %i (%s) cannot hold a double vec array",enum_type,EnumToStringx(enum_type));}
|
---|
[4059] | 75 | void SetValue(double* doublearray,int M,int N);
|
---|
[8600] | 76 | void SetValue(int* intarray,int M){_error_("DoubleMat param of enum %i (%s) cannot hold a int vec array",enum_type,EnumToStringx(enum_type));}
|
---|
| 77 | void SetValue(int* intarray,int M,int N){_error_("DoubleMat param of enum %i (%s) cannot hold a int mat array",enum_type,EnumToStringx(enum_type));};
|
---|
[8224] | 78 | void SetValue(Vec vec){_error_("DoubleMat param of enum %i (%s) cannot hold a Vec",enum_type,EnumToStringx(enum_type));}
|
---|
| 79 | void SetValue(Mat mat){_error_("DoubleMat param of enum %i (%s) cannot hold a Mat",enum_type,EnumToStringx(enum_type));}
|
---|
| 80 | void SetValue(FILE* fid){_error_("DoubleMat param of enum %i (%s) cannot hold a FILE",enum_type,EnumToStringx(enum_type));}
|
---|
| 81 | void SetValue(double** array, int M, int* mdim_array, int* ndim_array){_error_("DoubleMat param of enum %i (%s) cannot hold an array of matrices",enum_type,EnumToStringx(enum_type));}
|
---|
[9356] | 82 | void UnitConversion(int direction_enum);
|
---|
[9362] | 83 | double* GetPointer(void);
|
---|
[4059] | 84 |
|
---|
[11202] | 85 | void GetParameterName(char**pname);
|
---|
[3715] | 86 | #ifdef _SERIAL_
|
---|
[3683] | 87 | void SetMatlabField(mxArray* dataref);
|
---|
[3715] | 88 | #endif
|
---|
| 89 |
|
---|
[3683] | 90 | /*}}}*/
|
---|
| 91 | };
|
---|
| 92 | #endif /* _DOUBLEMATPARAM_H */
|
---|