Blame view

src/ExternLib/sum_into_table_range/ProcessSumIntoTableRange.hh 1.2 KB
bd34e02d   Benjamin Renard   Add sum in table ...
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
/*
 * ProcessSumIntoTableRange.hh
 *
 *  Created on: Oct 06, 2016
 *      Author: AKKA IS
 */

#ifndef PROCESSSUMINTOTABLERANGE_HH_
#define PROCESSSUMINTOTABLERANGE_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 ProcessSumIntoTableRange : public AMDA::Parameters::MultiParamProcess_CRTP<ProcessSumIntoTableRange> {

public:
	/**
	 * @brief Constructor.
	 */
	ProcessSumIntoTableRange(Parameter &parameter);
	/**
	 * @brief Copy Constructor.
	 */
	ProcessSumIntoTableRange(const ProcessSumIntoTableRange& pProcess, Parameter &pParameter) ;
	/**
	 * @brief Destructor.
	 */
	~ProcessSumIntoTableRange();

	// Overload Process methods

	/**
	 * @overload Process::establishConnection()
	 */
	void establishConnection();

	/**
	 * @overload Process::init()
	 */
	TimeStamp init();

private:
	AMDA::Info::ParamTable* _dim1Table;
	AMDA::Info::ParamTable* _dim2Table;
8da18331   Benjamin Renard   sum_into_table_ra...
52
	AMDA::Info::ParamTable* _outputParamTable;
966af096   Benjamin Renard   Fix 'sum in range...
53
54

	std::string _mainParamId;
f1326d28   Benjamin Renard   Some fixes
55
56

	bool _tablesInit;
bd34e02d   Benjamin Renard   Add sum in table ...
57
58
59
60
61
};

} /* namespace Parameters */
} /* namespace AMDA */
#endif /* PROCESSSUMINTOTABLERANGE_HH_ */