source: issm/trunk/src/c/classes/Params/BoolParam.h

Last change on this file was 28013, checked in by Mathieu Morlighem, 17 months ago

merged trunk-jpl and trunk for revision 28011

File size: 4.8 KB
RevLine 
[3683]1/*! \file BoolParam.h
2 * \brief: header file for triavertexinput object
3 */
4
5#ifndef _BOOLPARAM_H_
6#define _BOOLPARAM_H_
7
8/*Headers:*/
[12365]9/*{{{*/
[3715]10#ifdef HAVE_CONFIG_H
[9320]11 #include <config.h>
[3715]12#else
13#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
14#endif
15
[3683]16#include "./Param.h"
[15012]17#include "../../shared/shared.h"
[3683]18/*}}}*/
19
20class BoolParam: public Param{
21
[3751]22 public:
[3683]23 /*just hold 3 values for 3 vertices: */
24 int enum_type;
[13414]25 bool value;
[3683]26
[12365]27 /*BoolParam constructors, destructors: {{{*/
[3683]28 BoolParam();
[13414]29 BoolParam(int enum_type,bool value);
[3683]30 ~BoolParam();
31 /*}}}*/
[12365]32 /*Object virtual functions definitions:{{{ */
[21341]33 Param* copy();
34 void DeepEcho();
[4248]35 void Echo();
36 int Id();
[25836]37 void Marshall(MarshallHandle* marshallhandle);
[9883]38 int ObjectEnum();
[3683]39 /*}}}*/
[12365]40 /*Param vritual function definitions: {{{*/
[3683]41 void GetParameterValue(bool* pbool){*pbool=value;}
[13129]42 void GetParameterValue(int* pinteger){_error_("Param "<< EnumToStringx(enum_type) << " cannot return an integer");}
43 void GetParameterValue(int** pintarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return an array of integers");}
44 void GetParameterValue(int** pintarray,int* pM,int* pN){_error_("Param "<< EnumToStringx(enum_type) << " cannot return an array of integers");}
45 void GetParameterValue(IssmDouble* pIssmDouble){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
[13036]46 void GetParameterValue(IssmDouble* pdouble,IssmDouble time){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble for a given time");}
[13129]47 void GetParameterValue(char** pstring){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a string");}
48 void GetParameterValue(char*** pstringarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a string array");}
49 void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
50 void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM, int* pN){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
[28013]51 void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM, const char* data){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
[13129]52 void GetParameterValue(IssmDouble*** parray, int* pM,int** pmdims, int** pndims){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a matrix array");}
[13216]53 void GetParameterValue(Vector<IssmDouble>** pvec){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a Vec");}
54 void GetParameterValue(Matrix<IssmDouble>** pmat){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a Mat");}
[13129]55 void GetParameterValue(FILE** pfid){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a FILE");}
[13425]56 void GetParameterValue(DataSet** pdataset){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a DataSet");}
[21341]57 int InstanceEnum(){return enum_type;}
[4059]58
[21341]59 void SetEnum(int enum_in){this->enum_type = enum_in;};
[4059]60 void SetValue(bool boolean){this->value=boolean;}
[13129]61 void SetValue(int integer){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an int");}
62 void SetValue(IssmDouble scalar){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an IssmPDouble");}
63 void SetValue(char* string){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
64 void SetValue(char** stringarray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string array");}
[28013]65 void SetValue(IssmDouble* IssmDoublearray){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble array");}
[13129]66 void SetValue(IssmDouble* IssmDoublearray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble array");}
67 void SetValue(IssmDouble* pIssmDoublearray,int M,int N){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble array");}
68 void SetValue(int* intarray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a int array");}
69 void SetValue(int* pintarray,int M,int N){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a int array");}
[13216]70 void SetValue(Vector<IssmDouble>* vec){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a Vec");}
71 void SetValue(Matrix<IssmDouble>* mat){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a Mat");}
[13129]72 void SetValue(FILE* fid){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a FILE");}
73 void SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an array of matrices");}
[28013]74 void SetGradient(IssmDouble* poutput, int M, int N){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an IssmDouble");};
[3683]75 /*}}}*/
76};
77#endif /* _BOOLPARAM_H */
Note: See TracBrowser for help on using the repository browser.