source: issm/trunk-jpl-damage/src/c/objects/Params/IntParam.h@ 11417

Last change on this file since 11417 was 11417, checked in by cborstad, 13 years ago

merged src changes 11330:11410 from trunk-jpl

File size: 4.6 KB
RevLine 
[3683]1/*! \file IntParam.h
2 * \brief: header file for triavertexinput object
3 */
4
5
6#ifndef _INTPARAM_H_
7#define _INTPARAM_H_
8
9/*Headers:*/
10/*{{{1*/
[3715]11#ifdef HAVE_CONFIG_H
[9320]12 #include <config.h>
[3715]13#else
14#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
15#endif
16
17#ifdef _SERIAL_
18#include <mex.h>
19#endif
20
[3683]21#include "./Param.h"
[3775]22#include "../../include/include.h"
[3683]23#include "../../shared/shared.h"
24/*}}}*/
25
26class IntParam: public Param{
27
28 private:
29 /*just hold 3 values for 3 vertices: */
30 int enum_type;
31 IssmInt value;
32
33 public:
[4248]34 /*IntParam constructors, destructors: {{{1*/
[3683]35 IntParam();
36 IntParam(int enum_type,IssmInt value);
37 ~IntParam();
38 /*}}}*/
[4248]39 /*Object virtual functions definitions:{{{1 */
40 void Echo();
[3683]41 void DeepEcho();
[4248]42 int Id();
43 int MyRank();
[9777]44 #ifdef _SERIAL_
[4248]45 void Marshall(char** pmarshalled_dataset);
46 int MarshallSize();
[3683]47 void Demarshall(char** pmarshalled_dataset);
[9777]48 #endif
[9883]49 int ObjectEnum();
[4248]50 Object* copy();
[3683]51 /*}}}*/
[4248]52 /*Param vritual function definitions: {{{1*/
[9883]53 int InstanceEnum(){return enum_type;}
[8224]54 void GetParameterValue(bool* pbool){_error_("Int param of enum %i (%s) cannot return a bool",enum_type,EnumToStringx(enum_type));}
[3683]55 void GetParameterValue(int* pinteger){*pinteger=value;}
[8224]56 void GetParameterValue(int** pintarray,int* pM){_error_("Int param of enum %i (%s) cannot return an array of integers",enum_type,EnumToStringx(enum_type));}
[8600]57 void GetParameterValue(int** pintarray,int* pM,int* pN){_error_("Int param of enum %i (%s) cannot return an array of integers",enum_type,EnumToStringx(enum_type));}
[8224]58 void GetParameterValue(double* pdouble){_error_("Int param of enum %i (%s) cannot return a double",enum_type,EnumToStringx(enum_type));}
59 void GetParameterValue(char** pstring){_error_("Int param of enum %i (%s) cannot return a string",enum_type,EnumToStringx(enum_type));}
[11417]60 void GetParameterValue(char*** pstringarray,int* pM){_error_("Int param of enum %i (%s) cannot return a string array",enum_type,EnumToStringx(enum_type));}
[8224]61 void GetParameterValue(double** pdoublearray,int* pM){_error_("Int param of enum %i (%s) cannot return a double array",enum_type,EnumToStringx(enum_type));}
62 void GetParameterValue(double** pdoublearray,int* pM, int* pN){_error_("Int param of enum %i (%s) cannot return a double array",enum_type,EnumToStringx(enum_type));}
63 void GetParameterValue(double*** parray, int* pM,int** pmdims, int** pndims){_error_("Int param of enum %i (%s) cannot return a matrix array",enum_type,EnumToStringx(enum_type));}
64 void GetParameterValue(Vec* pvec){_error_("Int param of enum %i (%s) cannot return a Vec",enum_type,EnumToStringx(enum_type));}
65 void GetParameterValue(Mat* pmat){_error_("Int param of enum %i (%s) cannot return a Mat",enum_type,EnumToStringx(enum_type));}
66 void GetParameterValue(FILE** pfid){_error_("Int param of enum %i (%s) cannot return a FILE",enum_type,EnumToStringx(enum_type));}
[4059]67
68 void SetValue(bool boolean){this->value=(int)boolean;}
69 void SetValue(int integer){this->value=integer;}
[8224]70 void SetValue(int* intarray,int M){_error_("Int param of enum %i (%s) cannot hold an int array",enum_type,EnumToStringx(enum_type));}
[8600]71 void SetValue(int* intarray,int M,int N){_error_("Int param of enum %i (%s) cannot hold an int array",enum_type,EnumToStringx(enum_type));}
[4059]72 void SetValue(double scalar){this->value=(int)scalar;}
[8224]73 void SetValue(char* string){_error_("Int param of enum %i (%s) cannot hold a string",enum_type,EnumToStringx(enum_type));}
74 void SetValue(char** stringarray,int M){_error_("Int param of enum %i (%s) cannot hold a string array",enum_type,EnumToStringx(enum_type));}
75 void SetValue(double* doublearray,int M){_error_("Int param of enum %i (%s) cannot hold a double array",enum_type,EnumToStringx(enum_type));}
76 void SetValue(double* pdoublearray,int M,int N){_error_("Int param of enum %i (%s) cannot hold a double array",enum_type,EnumToStringx(enum_type));}
77 void SetValue(Vec vec){_error_("Int param of enum %i (%s) cannot hold a Vec",enum_type,EnumToStringx(enum_type));}
78 void SetValue(Mat mat){_error_("Int param of enum %i (%s) cannot hold a Mat",enum_type,EnumToStringx(enum_type));}
79 void SetValue(FILE* fid){_error_("Int param of enum %i (%s) cannot hold a FILE",enum_type,EnumToStringx(enum_type));}
80 void SetValue(double** array, int M, int* mdim_array, int* ndim_array){_error_("Int param of enum %i (%s) cannot hold an array of matrices",enum_type,EnumToStringx(enum_type));}
[9356]81 void UnitConversion(int direction_enum);
[4059]82
[11202]83 void GetParameterName(char**pname);
[3715]84 #ifdef _SERIAL_
[3683]85 void SetMatlabField(mxArray* dataref);
[3715]86 #endif
87
[3683]88 /*}}}*/
89};
90#endif /* _INTPARAM_H */
Note: See TracBrowser for help on using the repository browser.