[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 |
|
---|
| 30 | class PetscVecParam: public Param{
|
---|
| 31 |
|
---|
| 32 | private:
|
---|
| 33 | /*just hold 3 values for 3 vertices: */
|
---|
| 34 | int enum_type;
|
---|
| 35 | Vec value;
|
---|
| 36 |
|
---|
| 37 | public:
|
---|
| 38 | /*constructors, destructors: {{{1*/
|
---|
| 39 | PetscVecParam();
|
---|
| 40 | PetscVecParam(int enum_type,Vec value);
|
---|
| 41 | ~PetscVecParam();
|
---|
| 42 | /*}}}*/
|
---|
| 43 | /*Object methods: {{{1*/
|
---|
| 44 | Object* copy();
|
---|
| 45 | void DeepEcho();
|
---|
| 46 | void Demarshall(char** pmarshalled_dataset);
|
---|
| 47 | void Echo();
|
---|
| 48 | int Enum();
|
---|
| 49 | int Id();
|
---|
| 50 | void Marshall(char** pmarshalled_dataset);
|
---|
| 51 | int MarshallSize();
|
---|
| 52 | int MyRank();
|
---|
[3834] | 53 | void UpdateInputsFromVector(double* vector, int name, int type);
|
---|
| 54 | void UpdateInputsFromVector(int* vector, int name, int type);
|
---|
| 55 | void UpdateInputsFromVector(bool* vector, int name, int type);
|
---|
| 56 | void UpdateInputsFromConstant(double constant, int name);
|
---|
| 57 | void UpdateInputsFromConstant(int constant, int name);
|
---|
| 58 | void UpdateInputsFromConstant(bool constant, int name);
|
---|
[3732] | 59 |
|
---|
[3834] | 60 | void UpdateInputsFromSolution(double* solution, int analysis_type, int sub_analysis_type){ISSMERROR("Not implemented yet!");}
|
---|
[3703] | 61 |
|
---|
[3683] | 62 | /*}}}*/
|
---|
| 63 | /*Param methods: {{{1*/
|
---|
| 64 | int EnumType(){return enum_type;}
|
---|
| 65 | void GetParameterValue(bool* pbool){ISSMERROR("PetscVec param cannot return a bool");}
|
---|
| 66 | void GetParameterValue(int* pinteger){ISSMERROR("PetscVec param cannot return an integer");}
|
---|
| 67 | void GetParameterValue(double* pdouble){ISSMERROR("PetscVec param cannot return a double");}
|
---|
| 68 | void GetParameterValue(char** pstring){ISSMERROR("PetscVec param cannot return a string");}
|
---|
| 69 | void GetParameterValue(char*** pstringarray,int* pM){ISSMERROR("PetscVec param cannot return a string arrayl");}
|
---|
| 70 | void GetParameterValue(double** pdoublearray,int* pM){ISSMERROR("PetscVec param cannot return a double array");}
|
---|
| 71 | void GetParameterValue(double** pdoublearray,int* pM, int* pN){ISSMERROR("PetscVec param cannot return a double array");}
|
---|
| 72 | void GetParameterValue(Mat* pmat){ISSMERROR("PetscVec param cannot return a Mat");}
|
---|
| 73 | void GetParameterValue(Vec* poutput);
|
---|
| 74 | char* GetParameterName(void);
|
---|
[3715] | 75 | void Process(double* partition,int numberofvertices);
|
---|
| 76 | #ifdef _SERIAL_
|
---|
[3683] | 77 | void SetMatlabField(mxArray* dataref);
|
---|
[3715] | 78 | #endif
|
---|
| 79 |
|
---|
[3683] | 80 | /*}}}*/
|
---|
| 81 | };
|
---|
| 82 | #endif /* _PETSCVECPARAM_H */
|
---|