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

Last change on this file since 4079 was 4079, checked in by Eric.Larour, 15 years ago

renamed UpdateInputsFromConstantx to InputUpdateFromConstantx

File size: 4.0 KB
Line 
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*/
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
23#include "./Param.h"
24#include "../../include/include.h"
25#include "../../shared/shared.h"
26#include "../../include/include.h"
27#include "../../include/include.h"
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:
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();
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 InputUpdateFromConstant(double constant, int name);
57 void InputUpdateFromConstant(int constant, int name);
58 void InputUpdateFromConstant(bool constant, int name);
59 void UpdateInputsFromSolution(double* solution){ISSMERROR("Not implemented yet!");}
60
61 /*}}}*/
62 /*Param methods: {{{1*/
63 int EnumType(){return enum_type;}
64 void GetParameterValue(bool* pbool){ISSMERROR("PetscVec param of enum %i (%s) cannot return a bool",enum_type,EnumAsString(enum_type));}
65 void GetParameterValue(int* pinteger){ISSMERROR("PetscVec param of enum %i (%s) cannot return an integer",enum_type,EnumAsString(enum_type));}
66 void GetParameterValue(double* pdouble){ISSMERROR("PetscVec param of enum %i (%s) cannot return a double",enum_type,EnumAsString(enum_type));}
67 void GetParameterValue(char** pstring){ISSMERROR("PetscVec param of enum %i (%s) cannot return a string",enum_type,EnumAsString(enum_type));}
68 void GetParameterValue(char*** pstringarray,int* pM){ISSMERROR("PetscVec param of enum %i (%s) cannot return a string arrayl",enum_type,EnumAsString(enum_type));}
69 void GetParameterValue(double** pdoublearray,int* pM){ISSMERROR("PetscVec param of enum %i (%s) cannot return a double array",enum_type,EnumAsString(enum_type));}
70 void GetParameterValue(double** pdoublearray,int* pM, int* pN){ISSMERROR("PetscVec param of enum %i (%s) cannot return a double array",enum_type,EnumAsString(enum_type));}
71 void GetParameterValue(Mat* pmat){ISSMERROR("PetscVec param of enum %i (%s) cannot return a Mat",enum_type,EnumAsString(enum_type));}
72 void GetParameterValue(Vec* poutput);
73
74 void SetValue(bool boolean){ISSMERROR("Bool param of enum %i (%s) cannot hold a boolean",enum_type,EnumAsString(enum_type));}
75 void SetValue(int integer){ISSMERROR("Bool param of enum %i (%s) cannot hold an integer",enum_type,EnumAsString(enum_type));}
76 void SetValue(double scalar){ISSMERROR("Bool param of enum %i (%s) cannot hold a scalar",enum_type,EnumAsString(enum_type));}
77 void SetValue(char* string){ISSMERROR("Bool param of enum %i (%s) cannot hold a string",enum_type,EnumAsString(enum_type));}
78 void SetValue(char** stringarray,int M){ISSMERROR("Bool param of enum %i (%s) cannot hold a string array",enum_type,EnumAsString(enum_type));}
79 void SetValue(double* doublearray,int M){ISSMERROR("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumAsString(enum_type));}
80 void SetValue(double* pdoublearray,int M,int N){ISSMERROR("Bool param of enum %i (%s) cannot hold a double array",enum_type,EnumAsString(enum_type));}
81 void SetValue(Vec vec);
82 void SetValue(Mat mat){ISSMERROR("Bool param of enum %i (%s) cannot hold a Mat",enum_type,EnumAsString(enum_type));}
83
84 char* GetParameterName(void);
85 void Process(double* partition,int numberofvertices);
86 #ifdef _SERIAL_
87 void SetMatlabField(mxArray* dataref);
88 #endif
89
90 /*}}}*/
91};
92#endif /* _PETSCVECPARAM_H */
Note: See TracBrowser for help on using the repository browser.