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

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

merged trunk-jpl and trunk for revision 13393

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