MinVarStatisticProcess.hh
895 Bytes
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
/*
* MinVarStatisticProcess.hh
*
* Created on: Nov 09, 2014
* Author: AKKA
*/
#ifndef MINVARSTATISTICPROCESS_HH_
#define MINVARSTATISTICPROCESS_HH_
#include "StatisticProcess.hh"
namespace AMDA {
namespace Statistic {
namespace MinVar {
/**
* @class MinVarStatisticProcess
* @brief Process to compute minvar value
*/
class MinVarStatisticProcess : public AMDA::Parameters::StatisticProcess
{
public:
/*
* @brief constructor
*/
MinVarStatisticProcess(AMDA::Parameters::Parameter ¶meter, int index);
/*
* @brief destructor
*/
virtual ~MinVarStatisticProcess(void);
/*
* @brief create min statistic operation
*/
virtual void createOperation(void);
/*
* @brief get UCD of the process
*/
std::string getUCD(void);
};
} /* namespace MinVar */
} /* namespace Statistic */
} /* namespace AMDA */
#endif