source: issm/trunk/src/c/objects/Params/BoolParam.h@ 6163

Last change on this file since 6163 was 6163, checked in by Mathieu Morlighem, 14 years ago

Some cleaning in Params

File size: 3.9 KB
Line 
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#ifdef _SERIAL_
18#include <mex.h>
19#endif
20
21#include "./Param.h"
22#include "../../include/include.h"
23#include "../../shared/shared.h"
24/*}}}*/
25
26class BoolParam: public Param{
27
28 public:
29 /*just hold 3 values for 3 vertices: */
30 int enum_type;
31 IssmBool value;
32
33 /*BoolParam constructors, destructors: {{{1*/
34 BoolParam();
35 BoolParam(int enum_type,IssmBool value);
36 ~BoolParam();
37 /*}}}*/
38 /*Object virtual functions definitions:{{{1 */
39 void Echo();
40 void DeepEcho();
41 int Id();
42 int MyRank();
43 void Marshall(char** pmarshalled_dataset);
44 int MarshallSize();
45 void Demarshall(char** pmarshalled_dataset);
46 int Enum();
47 Object* copy();
48 /*}}}*/
49 /*Param vritual function definitions: {{{1*/
50 int EnumType(){return enum_type;}
51 void GetParameterValue(bool* pbool){*pbool=value;}
52 void GetParameterValue(int* pinteger){ISSMERROR("Bool param of enum %i (%s) cannot return an integer",enum_type,EnumToString(enum_type));}
53 void GetParameterValue(double* pdouble){ISSMERROR("Bool param of enum %i (%s) cannot return a double",enum_type,EnumToString(enum_type));}
54 void GetParameterValue(char** pstring){ISSMERROR("Bool param of enum %i (%s) cannot return a string",enum_type,EnumToString(enum_type));}
55 void GetParameterValue(char*** pstringarray,int* pM){ISSMERROR("Bool param of enum %i (%s) cannot return a string arrayl",enum_type,EnumToString(enum_type));}
56 void GetParameterValue(double** pdoublearray,int* pM){ISSMERROR("Bool param of enum %i (%s) cannot return a double array",enum_type,EnumToString(enum_type));}
57 void GetParameterValue(double** pdoublearray,int* pM, int* pN){ISSMERROR("Bool param of enum %i (%s) cannot return a double array",enum_type,EnumToString(enum_type));}
58 void GetParameterValue(double*** parray, int* pM,int** pmdims, int** pndims){ISSMERROR("Bool param of enum %i (%s) cannot return a matrix array",enum_type,EnumToString(enum_type));}
59 void GetParameterValue(Vec* pvec){ISSMERROR("Bool param of enum %i (%s) cannot return a Vec",enum_type,EnumToString(enum_type));}
60 void GetParameterValue(Mat* pmat){ISSMERROR("Bool param of enum %i (%s) cannot return a Mat",enum_type,EnumToString(enum_type));}
61 void GetParameterValue(FILE** pfid){ISSMERROR("Bool param of enum %i (%s) cannot return a FILE",enum_type,EnumToString(enum_type));}
62
63 void SetValue(bool boolean){this->value=boolean;}
64 void SetValue(int integer){this->value=(bool)integer;}
65 void SetValue(double scalar){this->value=(bool)scalar;}
66 void SetValue(char* string){ISSMERROR("Bool param of enum %i (%s) cannot hold a string",enum_type,EnumToString(enum_type));}
67 void SetValue(char** stringarray,int M){ISSMERROR("Bool param of enum %i (%s) cannot hold a string array",enum_type,EnumToString(enum_type));}
68 void SetValue(double* doublearray,int M){ISSMERROR("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumToString(enum_type));}
69 void SetValue(double* pdoublearray,int M,int N){ISSMERROR("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumToString(enum_type));}
70 void SetValue(Vec vec){ISSMERROR("Bool param of enum %i (%s) cannot hold a Vec",enum_type,EnumToString(enum_type));}
71 void SetValue(Mat mat){ISSMERROR("Bool param of enum %i (%s) cannot hold a Mat",enum_type,EnumToString(enum_type));}
72 void SetValue(FILE* fid){ISSMERROR("Bool param of enum %i (%s) cannot hold a FILE",enum_type,EnumToString(enum_type));}
73 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,EnumToString(enum_type));}
74
75 char* GetParameterName(void);
76 #ifdef _SERIAL_
77 void SetMatlabField(mxArray* dataref);
78 #endif
79 /*}}}*/
80};
81#endif /* _BOOLPARAM_H */
Note: See TracBrowser for help on using the repository browser.