[25379] | 1 | /*! \file ControlInput.h
|
---|
[24335] | 2 | * \brief: header file for triavertexinput object
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | #ifndef _CONTROLINPUT2_H_
|
---|
| 6 | #define _CONTROLINPUT2_H_
|
---|
| 7 |
|
---|
| 8 | /*Headers:*/
|
---|
[25379] | 9 | #include "./Input.h"
|
---|
[24335] | 10 | class Gauss;
|
---|
[25379] | 11 | class ElementInput;
|
---|
[25406] | 12 | class TransientInput;
|
---|
[24335] | 13 |
|
---|
[25379] | 14 | class ControlInput: public Input{
|
---|
[24335] | 15 |
|
---|
| 16 | public:
|
---|
[25406] | 17 | int control_id;
|
---|
| 18 | int enum_type;
|
---|
| 19 | int layout_enum;
|
---|
| 20 | Input *gradient;
|
---|
| 21 | Input *maxvalues;
|
---|
| 22 | Input *minvalues;
|
---|
| 23 | Input *savedvalues;
|
---|
| 24 | Input *values;
|
---|
[24335] | 25 |
|
---|
[25379] | 26 | /*ControlInput constructors, destructors: {{{*/
|
---|
| 27 | ControlInput();
|
---|
| 28 | ControlInput(int nbe, int nbv,int input_layout_enum,int interp,int id);
|
---|
[25406] | 29 | ControlInput(int enum_in,int nbe, int nbv,int id,IssmDouble* times, int numtimes);
|
---|
[25379] | 30 | ~ControlInput();
|
---|
[24335] | 31 | /*}}}*/
|
---|
| 32 | /*Object virtual functions definitions:{{{ */
|
---|
[25379] | 33 | Input* copy();
|
---|
[25406] | 34 | void Configure(Parameters* params);
|
---|
| 35 | void DeepEcho();
|
---|
| 36 | void Echo();
|
---|
| 37 | int Id();
|
---|
[25508] | 38 | void Marshall(MarshallHandle* marshallhandle);
|
---|
[25406] | 39 | int ObjectEnum();
|
---|
[24335] | 40 | /*}}}*/
|
---|
[25379] | 41 | void SetInput(Input* in_input){_error_("not impelemented");};
|
---|
| 42 | void SetInput(Input* in_input,int timeoffset){_error_("not impelemented");};
|
---|
| 43 | ElementInput* GetInput(const char* data);
|
---|
[25406] | 44 | TransientInput* GetTransientInput(const char* data);
|
---|
[24335] | 45 | void SetControl(int interp,int numindices,int* indices,IssmDouble* values_in,IssmDouble* values_min,IssmDouble* values_max);
|
---|
| 46 | void SetGradient(int interp,int numindices,int* indices,IssmDouble* values_in);
|
---|
| 47 | void SetGradient(int interp,int numindices,int* indices,IssmDouble* values_in,int n);
|
---|
[25379] | 48 | TriaInput* GetTriaInput();
|
---|
| 49 | PentaInput* GetPentaInput();
|
---|
[24335] | 50 | };
|
---|
| 51 | #endif /* _CONTROLINPUT_H */
|
---|