ProcessDeriv.hh
1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* ProcessDeriv.hh
*
* Created on: Dec 12, 2012
* Author: f.casimir
*/
#ifndef PROCESSDeriv_HH_
#define PROCESSDeriv_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace Parameters {
/**
* @class ProcessDeriv
* @brief Data deriv process.
* @details This class represents the process that must deriv the data type of an unknown ParamData, of 3 point Lagrangian interpolation derivation.
* To do this it implements the Process interface and delegates the data deriv to an output ParamData to a Deriv class.
* This class is builded from the DerivCreator visitor.
*/
class ProcessDeriv : public AMDA::Parameters::SingleParamProcess_CRTP<ProcessDeriv> {
public:
/**
* @brief Constructor.
*/
ProcessDeriv(Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
ProcessDeriv(const ProcessDeriv& pProcess, Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~ProcessDeriv();
// Overload Process methods
/**
* @overload Process::init()
*/
TimeStamp init();
};
} /* namespace Parameters */
} /* namespace AMDA */
#endif /* PROCESSDeriv_HH_ */