source: issm/trunk/src/c/classes/objects/Params/DoubleMatArrayParam.h@ 13975

Last change on this file since 13975 was 13975, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 13974

File size: 4.7 KB
Line 
1/*! \file DoubleMatArrayParam.h
2 * \brief: header file for object holding an array of serial matrices
3 */
4
5#ifndef _DOUBLEMATARRAYPARAM_H_
6#define _DOUBLEMATARRAYPARAM_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 "../../../include/include.h"
18#include "../../../shared/shared.h"
19/*}}}*/
20
21class DoubleMatArrayParam: public Param{
22
23 private:
24 int enum_type;
25 IssmDouble **array; //array of matrices
26 int M; //size of array
27 int *mdim_array; //m-dimensions of matrices in the array
28 int *ndim_array; //n-dimensions -f matrices in the array
29
30 public:
31 /*DoubleMatArrayParam constructors, destructors: {{{*/
32 DoubleMatArrayParam();
33 DoubleMatArrayParam(int enum_type,IssmDouble** array, int M, int* mdim_array, int* ndim_array);
34 ~DoubleMatArrayParam();
35 /*}}}*/
36 /*Object virtual functions definitions:{{{ */
37 void Echo();
38 void DeepEcho();
39 int Id();
40 int ObjectEnum();
41 Object* copy();
42 /*}}}*/
43 /*Param vritual function definitions: {{{*/
44 int InstanceEnum(){return enum_type;}
45 void GetParameterValue(bool* pbool){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a bool");}
46 void GetParameterValue(int* pinteger){_error_("Param "<< EnumToStringx(enum_type) << "cannot return an integer");}
47 void GetParameterValue(int** pintarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << "cannot return an array of integers");}
48 void GetParameterValue(int** pintarray,int* pM,int* pN){_error_("Param "<< EnumToStringx(enum_type) << "cannot return an array of integers");}
49 void GetParameterValue(IssmDouble* pIssmDouble){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a IssmDouble");}
50 void GetParameterValue(IssmDouble* pdouble,IssmDouble time){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble for a given time");}
51 void GetParameterValue(char** pstring){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a string");}
52 void GetParameterValue(char*** pstringarray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a string array");}
53 void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a IssmDouble array");}
54 void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM, int* pN){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a IssmDouble array");}
55 void GetParameterValue(IssmDouble*** parray, int* pM,int** pmdims, int** pndims);
56 void GetParameterValue(Vector<IssmDouble>** pvec){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a Vec");}
57 void GetParameterValue(Matrix<IssmDouble>** pmat){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a Mat");}
58 void GetParameterValue(FILE** pfid){_error_("Param "<< EnumToStringx(enum_type) << "cannot return a FILE");}
59 void GetParameterValue(DataSet** pdataset){_error_("Param "<< EnumToStringx(enum_type) << " cannot return a DataSet");}
60
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 mat 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){_error_("Param "<< EnumToStringx(enum_type) << "cannot hold a int mat array");}
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_("Bool param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold a FILE");}
73 void SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array);
74 void UnitConversion(int direction_enum);
75
76 void GetParameterName(char**pname);
77
78 /*}}}*/
79};
80#endif /* _DOUBLEMATARRAYPARAM_H */
Note: See TracBrowser for help on using the repository browser.