Blame view

src/ExternLib/GetClbInfo/GetClbInfoProcess.hh 1.13 KB
fbe3c2bb   Benjamin Renard   First commit
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
/*
 * 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 &parameter);
		/**
		 * @brief Copy Constructor.
		 */
		GetClbInfoProcess(const GetClbInfoProcess& pProcess, AMDA::Parameters::Parameter &pParameter) ;
		/**
		 * @brief Destructor.
		 */
		~GetClbInfoProcess();

		// Overload Process methods
		/**
		 * @overload Process::init()
		 */
		AMDA::Parameters::TimeStamp init();
dc01b853   Hacene SI HADJ MOHAND   il reste get cali...
41
42
                                  
                                       std::list<std::string> getUsedClbInfo();
fbe3c2bb   Benjamin Renard   First commit
43
44
45
46
47
	};

} /* namespace GetClbInfo */
} /* namespace AMDA */
#endif /* GetClbInfoProcess_HH_ */