ProcessMexVexElsDecode.hh
1.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* ProcessMexVexElsDecode.hh
*
* Created on: Oct 14, 2016
* Author: elena
*/
#ifndef PROCESSMEXVEXELSDECODE_HH_
#define PROCESSMEXVEXELSDECODE_HH_
#include "MultiParamProcess.hh"
#include "ParamInfo.hh"
namespace AMDA {
namespace Parameters {
/**
* @class ProcessSumIntoTableRange
* @brief Process to compute the sum of parameter data into table range.
*/
class ProcessMexVexElsDecode : public AMDA::Parameters::MultiParamProcess_CRTP<ProcessMexVexElsDecode> {
public:
/**
* @brief Constructor.
*/
ProcessMexVexElsDecode(Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
ProcessMexVexElsDecode(const ProcessMexVexElsDecode& pProcess, Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~ProcessMexVexElsDecode();
/**
* @overload Process::establishConnection()
*/
void establishConnection();
/**
* @overload Process::init()
*/
TimeStamp init();
protected:
/**
* @brief If the expression is not a Single parameter,
* it must ask the creation of a parameter responsible of the formula calculation.
*/
void parse();
private:
/**
* @brief list of param name intput
* @detail this list must be ordered
*/
std::string _energyTableName;
std::string _inputParamName;
};
} /* namespace Parameters */
} /* namespace AMDA */
#endif /* PROCESSMEXVEXELSDECODE_HH_ */