Blame view

src/ExternLib/GetClbInfoByIndex/GetClbInfoByIndexProcess.hh 1.1 KB
ed9a1eaf   Benjamin Renard   Add Maven STATIC ...
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
/*
 * GetClbInfoByIndexProcess.hh
 *
 *  Created on: Sep 24, 2015
 *      Author: AKKA
 */

#ifndef GetClbInfoByIndexProcess_HH_
#define GetClbInfoByIndexProcess_HH_

#include "SingleParamProcess.hh"

namespace AMDA {
namespace GetClbInfoByIndex {

	/**
	 * @class GetClbInfoByIndexProcess
	 * @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 GetClbInfoByIndexProcess : public AMDA::Parameters::SingleParamProcess_CRTP<GetClbInfoByIndexProcess> {
	public:
		/**
		 * @brief Constructor.
		 */
		GetClbInfoByIndexProcess(AMDA::Parameters::Parameter &parameter);
		/**
		 * @brief Copy Constructor.
		 */
		GetClbInfoByIndexProcess(const GetClbInfoByIndexProcess& pProcess, AMDA::Parameters::Parameter &pParameter) ;
		/**
		 * @brief Destructor.
		 */
		~GetClbInfoByIndexProcess();

		// Overload Process methods
		/**
		 * @overload Process::init()
		 */
		AMDA::Parameters::TimeStamp init();
	};

} /* namespace GetClbInfoByIndex */
} /* namespace AMDA */
#endif /* GetClbInfoByIndexProcess_HH_ */