GetClbInfoProcess.hh
1.05 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
/*
* GetClbInfoProcess.hh
*
* Created on: Dec 12, 2012
* Author: f.casimir
*/
#ifndef GetClbInfoProcess_HH_
#define GetClbInfoProcess_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace GetClbInfo {
/**
* @class GetClbInfoProcess
* @brief Return the good Calibration info function to the InputParameter.
* @details For each time, it put on the Output Param Data the corresponding Calibration Info.
*/
class GetClbInfoProcess : public AMDA::Parameters::SingleParamProcess_CRTP<GetClbInfoProcess> {
public:
/**
* @brief Constructor.
*/
GetClbInfoProcess(AMDA::Parameters::Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
GetClbInfoProcess(const GetClbInfoProcess& pProcess, AMDA::Parameters::Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~GetClbInfoProcess();
// Overload Process methods
/**
* @overload Process::init()
*/
AMDA::Parameters::TimeStamp init();
};
} /* namespace GetClbInfo */
} /* namespace AMDA */
#endif /* GetClbInfoProcess_HH_ */