Ice Sheet System Model  4.18
Code documentation
IntMatParam.h
Go to the documentation of this file.
1 
5 #ifndef _INTMATPARAM_H_
6 #define _INTMATPARAM_H_
7 
8 /*Headers:*/
9 /*{{{*/
10 #ifdef HAVE_CONFIG_H
11  #include <config.h>
12 #else
13 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
14 #endif
15 
16 #include "./Param.h"
17 #include "../../shared/shared.h"
18 /*}}}*/
19 
20 class IntMatParam: public Param{
21 
22  private:
23  int enum_type;
24  int* value;
25  int M;
26  int N;
27 
28  public:
29  /*IntMatParam constructors, destructors: {{{*/
30  IntMatParam();
31  IntMatParam(int enum_type,int* value,int M,int N);
32  ~IntMatParam();
33  /*}}}*/
34  /*Object virtual functions definitions:{{{ */
35  Param* copy();
36  void DeepEcho();
37  void Echo();
38  int Id();
39  void Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction);
40  int ObjectEnum();
41  /*}}}*/
42  /*Param vritual function definitions: {{{*/
43  void GetParameterValue(bool* pbool){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a bool");}
44  void GetParameterValue(int* pinteger){_error_("Param "<< EnumToStringx(enum_type) << " cannot return an integer");}
45  void GetParameterValue(int** pintarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return an array of integers");}
46  void GetParameterValue(int** pintarray,int* pM,int* pN);
47  void GetParameterValue(IssmDouble* pIssmDouble){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
48  void GetParameterValue(IssmDouble* pdouble,IssmDouble time){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble for a given time");}
49  void GetParameterValue(char** pstring){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a string");}
50  void GetParameterValue(char*** pstringarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a string array");}
51  void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
52  void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM,int* pN){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a matrix array");};
53  void GetParameterValue(IssmDouble*** parray, int* pM,int** pmdims, int** pndims){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a matrix array");}
54  void GetParameterValue(Vector<IssmDouble>** pvec){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a Vec");}
55  void GetParameterValue(Matrix<IssmDouble>** pmat){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a Mat");}
56  void GetParameterValue(FILE** pfid){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a FILE");}
57  void GetParameterValue(DataSet** pdataset){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a DataSet");}
58  int InstanceEnum(){return enum_type;}
59 
60  void SetEnum(int enum_in){this->enum_type = enum_in;};
61  void SetValue(bool boolean){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a boolean");}
62  void SetValue(int integer){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold an integer");}
63  void SetValue(IssmDouble scalar){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a scalar");}
64  void SetValue(char* string){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
65  void SetValue(char** stringarray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a string array");}
66  void SetValue(IssmDouble* IssmDoublearray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble vec array");}
67  void SetValue(IssmDouble* IssmDoublearray,int M,int N){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble vec array");};
68  void SetValue(int* intarray,int M){_error_("Param "<< EnumToStringx(enum_type) << " cannot hold a int vec array");};
69  void SetValue(int* intarray,int M,int N);
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");}
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");}
74  /*}}}*/
75 };
76 #endif /* _INTMATPARAM_H */
IntMatParam::SetValue
void SetValue(char *string)
Definition: IntMatParam.h:64
Matrix< IssmDouble >
IssmDouble
double IssmDouble
Definition: types.h:37
Param
Definition: Param.h:21
IntMatParam::InstanceEnum
int InstanceEnum()
Definition: IntMatParam.h:58
IntMatParam::GetParameterValue
void GetParameterValue(IssmDouble **pIssmDoublearray, int *pM, int *pN)
Definition: IntMatParam.h:52
IntMatParam::ObjectEnum
int ObjectEnum()
Definition: IntMatParam.cpp:79
IntMatParam::IntMatParam
IntMatParam()
Definition: IntMatParam.cpp:18
IntMatParam::SetValue
void SetValue(bool boolean)
Definition: IntMatParam.h:61
IntMatParam::GetParameterValue
void GetParameterValue(int *pinteger)
Definition: IntMatParam.h:44
IntMatParam::SetValue
void SetValue(int integer)
Definition: IntMatParam.h:62
IntMatParam::SetValue
void SetValue(IssmDouble **array, int M, int *mdim_array, int *ndim_array)
Definition: IntMatParam.h:73
IntMatParam::SetValue
void SetValue(IssmDouble *IssmDoublearray, int M)
Definition: IntMatParam.h:66
IntMatParam::GetParameterValue
void GetParameterValue(IssmDouble *pdouble, IssmDouble time)
Definition: IntMatParam.h:48
IntMatParam::SetValue
void SetValue(FILE *fid)
Definition: IntMatParam.h:72
IntMatParam::SetValue
void SetValue(char **stringarray, int M)
Definition: IntMatParam.h:65
IntMatParam::SetValue
void SetValue(int *intarray, int M)
Definition: IntMatParam.h:68
IntMatParam::GetParameterValue
void GetParameterValue(bool *pbool)
Definition: IntMatParam.h:43
IntMatParam
Definition: IntMatParam.h:20
IntMatParam::SetEnum
void SetEnum(int enum_in)
Definition: IntMatParam.h:60
IntMatParam::DeepEcho
void DeepEcho()
Definition: IntMatParam.cpp:45
IntMatParam::GetParameterValue
void GetParameterValue(FILE **pfid)
Definition: IntMatParam.h:56
EnumToStringx
const char * EnumToStringx(int enum_in)
Definition: EnumToStringx.cpp:15
IntMatParam::enum_type
int enum_type
Definition: IntMatParam.h:23
IntMatParam::GetParameterValue
void GetParameterValue(IssmDouble **pIssmDoublearray, int *pM)
Definition: IntMatParam.h:51
Param.h
abstract class for Param object
IntMatParam::SetValue
void SetValue(Matrix< IssmDouble > *mat)
Definition: IntMatParam.h:71
IntMatParam::Echo
void Echo()
Definition: IntMatParam.cpp:59
IntMatParam::GetParameterValue
void GetParameterValue(int **pintarray, int *pM)
Definition: IntMatParam.h:45
IntMatParam::Marshall
void Marshall(char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
Definition: IntMatParam.cpp:69
IntMatParam::GetParameterValue
void GetParameterValue(char **pstring)
Definition: IntMatParam.h:49
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
IntMatParam::SetValue
void SetValue(IssmDouble *IssmDoublearray, int M, int N)
Definition: IntMatParam.h:67
IntMatParam::~IntMatParam
~IntMatParam()
Definition: IntMatParam.cpp:32
IntMatParam::GetParameterValue
void GetParameterValue(char ***pstringarray, int *pM)
Definition: IntMatParam.h:50
IntMatParam::value
int * value
Definition: IntMatParam.h:24
IntMatParam::GetParameterValue
void GetParameterValue(Matrix< IssmDouble > **pmat)
Definition: IntMatParam.h:55
IntMatParam::M
int M
Definition: IntMatParam.h:25
IntMatParam::copy
Param * copy()
Definition: IntMatParam.cpp:39
IntMatParam::N
int N
Definition: IntMatParam.h:26
IntMatParam::GetParameterValue
void GetParameterValue(IssmDouble ***parray, int *pM, int **pmdims, int **pndims)
Definition: IntMatParam.h:53
IntMatParam::SetValue
void SetValue(IssmDouble scalar)
Definition: IntMatParam.h:63
IntMatParam::GetParameterValue
void GetParameterValue(Vector< IssmDouble > **pvec)
Definition: IntMatParam.h:54
DataSet
Declaration of DataSet class.
Definition: DataSet.h:14
IntMatParam::SetValue
void SetValue(Vector< IssmDouble > *vec)
Definition: IntMatParam.h:70
IntMatParam::Id
int Id()
Definition: IntMatParam.cpp:67
Vector< IssmDouble >
IntMatParam::GetParameterValue
void GetParameterValue(IssmDouble *pIssmDouble)
Definition: IntMatParam.h:47
IntMatParam::GetParameterValue
void GetParameterValue(DataSet **pdataset)
Definition: IntMatParam.h:57