| 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*/
 | 
|---|
| 11 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 12 |         #include <config.h>
 | 
|---|
| 13 | #else
 | 
|---|
| 14 | #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
 | 
|---|
| 15 | #endif
 | 
|---|
| 16 | 
 | 
|---|
| 17 | #include "./Param.h"
 | 
|---|
| 18 | #include "../../include/include.h"
 | 
|---|
| 19 | #include "../../shared/shared.h"
 | 
|---|
| 20 | /*}}}*/
 | 
|---|
| 21 | 
 | 
|---|
| 22 | class BoolParam: public Param{
 | 
|---|
| 23 | 
 | 
|---|
| 24 |         public:
 | 
|---|
| 25 |                 /*just hold 3 values for 3 vertices: */
 | 
|---|
| 26 |                 int enum_type;
 | 
|---|
| 27 |                 IssmBool value;
 | 
|---|
| 28 | 
 | 
|---|
| 29 |                 /*BoolParam constructors, destructors: {{{1*/
 | 
|---|
| 30 |                 BoolParam();
 | 
|---|
| 31 |                 BoolParam(int enum_type,IssmBool value);
 | 
|---|
| 32 |                 ~BoolParam();
 | 
|---|
| 33 |                 /*}}}*/
 | 
|---|
| 34 |                 /*Object virtual functions definitions:{{{1 */
 | 
|---|
| 35 |                 void  Echo();
 | 
|---|
| 36 |                 void  DeepEcho();
 | 
|---|
| 37 |                 int   Id(); 
 | 
|---|
| 38 |                 int   MyRank();
 | 
|---|
| 39 |                 int   ObjectEnum();
 | 
|---|
| 40 |                 Object* copy();
 | 
|---|
| 41 |                 /*}}}*/
 | 
|---|
| 42 |                 /*Param vritual function definitions: {{{1*/
 | 
|---|
| 43 |                 int   InstanceEnum(){return enum_type;}
 | 
|---|
| 44 |                 void  GetParameterValue(bool* pbool){*pbool=value;}
 | 
|---|
| 45 |                 void  GetParameterValue(int* pinteger){_error_("Bool param of enum %i (%s) cannot return an integer",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 46 |                 void  GetParameterValue(int** pintarray,int* pM){_error_("Bool param of enum %i (%s) cannot return an array of integers",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 47 |                 void  GetParameterValue(int** pintarray,int* pM,int* pN){_error_("Bool param of enum %i (%s) cannot return an array of integers",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 48 |                 void  GetParameterValue(double* pdouble){_error_("Bool param of enum %i (%s) cannot return a double",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 49 |                 void  GetParameterValue(char** pstring){_error_("Bool param of enum %i (%s) cannot return a string",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 50 |                 void  GetParameterValue(char*** pstringarray,int* pM){_error_("Bool param of enum %i (%s) cannot return a string array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 51 |                 void  GetParameterValue(double** pdoublearray,int* pM){_error_("Bool param of enum %i (%s) cannot return a double array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 52 |                 void  GetParameterValue(double** pdoublearray,int* pM, int* pN){_error_("Bool param of enum %i (%s) cannot return a double array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 53 |                 void  GetParameterValue(double*** parray, int* pM,int** pmdims, int** pndims){_error_("Bool param of enum %i (%s) cannot return a matrix array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 54 |                 void  GetParameterValue(Vector** pvec){_error_("Bool param of enum %i (%s) cannot return a Vec",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 55 |                 void  GetParameterValue(Matrix** pmat){_error_("Bool param of enum %i (%s) cannot return a Mat",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 56 |                 void  GetParameterValue(FILE** pfid){_error_("Bool param of enum %i (%s) cannot return a FILE",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 57 | 
 | 
|---|
| 58 |                 void  SetValue(bool boolean){this->value=boolean;}
 | 
|---|
| 59 |                 void  SetValue(int integer){this->value=(bool)integer;}
 | 
|---|
| 60 |                 void  SetValue(double scalar){this->value=(bool)scalar;}
 | 
|---|
| 61 |                 void  SetValue(char* string){_error_("Bool param of enum %i (%s) cannot hold a string",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 62 |                 void  SetValue(char** stringarray,int M){_error_("Bool param of enum %i (%s) cannot hold a string array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 63 |                 void  SetValue(double* doublearray,int M){_error_("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 64 |                 void  SetValue(double* pdoublearray,int M,int N){_error_("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 65 |                 void  SetValue(int* intarray,int M){_error_("Bool param of enum %i (%s) cannot hold a int array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 66 |                 void  SetValue(int* pintarray,int M,int N){_error_("Bool param of enum %i (%s) cannot hold a int array",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 67 |                 void  SetValue(Vector* vec){_error_("Bool param of enum %i (%s) cannot hold a Vec",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 68 |                 void  SetValue(Matrix* mat){_error_("Bool param of enum %i (%s) cannot hold a Mat",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 69 |                 void  SetValue(FILE* fid){_error_("Bool param of enum %i (%s) cannot hold a FILE",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 70 |                 void  SetValue(double** array, int M, int* mdim_array, int* ndim_array){_error_("Bool param of enum %i (%s) cannot hold an array of matrices",enum_type,EnumToStringx(enum_type));}
 | 
|---|
| 71 |                 void  UnitConversion(int direction_enum);
 | 
|---|
| 72 |                 
 | 
|---|
| 73 |                 void GetParameterName(char**pname);
 | 
|---|
| 74 |                 /*}}}*/
 | 
|---|
| 75 | };
 | 
|---|
| 76 | #endif  /* _BOOLPARAM_H */
 | 
|---|