[4874] | 1 | /*! \file FileParam.h
|
---|
| 2 | * \brief: header file for triavertexinput object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | #ifndef _FILEPARAM_H_
|
---|
| 7 | #define _FILEPARAM_H_
|
---|
| 8 |
|
---|
| 9 | /*Headers:*/
|
---|
[12365] | 10 | /*{{{*/
|
---|
[4874] | 11 | #ifdef HAVE_CONFIG_H
|
---|
[9320] | 12 | #include <config.h>
|
---|
[4874] | 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 |
|
---|
| 22 | class FileParam: public Param{
|
---|
| 23 |
|
---|
| 24 | private:
|
---|
| 25 | int enum_type;
|
---|
| 26 | FILE* value;
|
---|
| 27 |
|
---|
| 28 | public:
|
---|
[12365] | 29 | /*FileParam constructors, destructors: {{{*/
|
---|
[4874] | 30 | FileParam();
|
---|
| 31 | FileParam(int enum_type,FILE* fid);
|
---|
| 32 | ~FileParam();
|
---|
| 33 | /*}}}*/
|
---|
[12365] | 34 | /*Object virtual functions definitions:{{{ */
|
---|
[4874] | 35 | void Echo();
|
---|
| 36 | void DeepEcho();
|
---|
| 37 | int Id();
|
---|
| 38 | int MyRank();
|
---|
[9883] | 39 | int ObjectEnum();
|
---|
[4874] | 40 | Object* copy();
|
---|
| 41 | /*}}}*/
|
---|
[12365] | 42 | /*Param vritual function definitions: {{{*/
|
---|
[9883] | 43 | int InstanceEnum(){return enum_type;}
|
---|
[12744] | 44 | void GetParameterValue(bool* pbool){ _error2_("Param "<< EnumToStringx(enum_type) << " cannot return a bool");}
|
---|
| 45 | void GetParameterValue(int* pinteger){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
|
---|
| 46 | void GetParameterValue(int** pintarray,int* pM){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
|
---|
| 47 | void GetParameterValue(int** pintarray,int* pM,int* pN){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
|
---|
| 48 | void GetParameterValue(IssmDouble* pIssmDouble){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble");}
|
---|
| 49 | void GetParameterValue(IssmDouble* pdouble,IssmDouble time){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble for a given time");}
|
---|
| 50 | void GetParameterValue(char** pstring){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a string");}
|
---|
| 51 | void GetParameterValue(char*** pstringarray,int* pM){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a string array");}
|
---|
| 52 | void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
|
---|
| 53 | void GetParameterValue(IssmDouble** pIssmDoublearray,int* pM, int* pN){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a IssmDouble array");}
|
---|
[12494] | 54 | void GetParameterValue(IssmDouble*** parray, int* pM,int** pmdims, int** pndims){_error2_("File param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot return a matrix array");}
|
---|
[12744] | 55 | void GetParameterValue(Vector** pvec){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a Vec");}
|
---|
| 56 | void GetParameterValue(Matrix** pmat){_error2_("Param "<< EnumToStringx(enum_type) << " cannot return a Mat");}
|
---|
[4874] | 57 | void GetParameterValue(FILE** pfid){*pfid=value;};
|
---|
| 58 |
|
---|
[12744] | 59 | void SetValue(bool boolean){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
|
---|
| 60 | void SetValue(int integer){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
|
---|
| 61 | void SetValue(IssmDouble scalar){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
|
---|
| 62 | void SetValue(char* string){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a string");}
|
---|
| 63 | void SetValue(char** stringarray,int M){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a string array");}
|
---|
| 64 | void SetValue(IssmDouble* IssmDoublearray,int M){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble array");}
|
---|
| 65 | void SetValue(IssmDouble* pIssmDoublearray,int M,int N){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a IssmDouble array");}
|
---|
| 66 | void SetValue(int* intarray,int M){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a int array");}
|
---|
| 67 | void SetValue(int* pintarray,int M,int N){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a int array");}
|
---|
| 68 | void SetValue(Vector* vec){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a Vec");}
|
---|
| 69 | void SetValue(Matrix* mat){_error2_("Param "<< EnumToStringx(enum_type) << " cannot hold a Mat");}
|
---|
[12494] | 70 | void SetValue(FILE* fid){_error2_("File param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold a FILE");}
|
---|
| 71 | void SetValue(IssmDouble** array, int M, int* mdim_array, int* ndim_array){_error2_("File param of enum " << enum_type << " (" << EnumToStringx(enum_type) << ") cannot hold an array of matrices");}
|
---|
[9356] | 72 | void UnitConversion(int direction_enum);
|
---|
[4874] | 73 |
|
---|
[11202] | 74 | void GetParameterName(char**pname);
|
---|
[4874] | 75 |
|
---|
| 76 | /*}}}*/
|
---|
| 77 | };
|
---|
| 78 | #endif /* _INTPARAM_H */
|
---|