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