source: issm/trunk/src/c/objects/Params/PetscVecParam.h@ 5103

Last change on this file since 5103 was 5103, checked in by Mathieu Morlighem, 15 years ago

moved EnumAsString to EnumToString

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