GetMavenStaticEnergyProcess.hh
1.12 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
47
48
/*
* GetMavenStaticEnergyProcess.hh
*
* Created on: Sep 23, 2015
* Author: AKKA
*/
#ifndef GetMavenStaticEnergyProcess_HH_
#define GetMavenStaticEnergyProcess_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace MavenStatic {
/**
* @class GetMavenStaticEnergyProcess
* @brief Return the energy table got Maven STATIC.
*/
class GetMavenStaticEnergyProcess : public AMDA::Parameters::SingleParamProcess_CRTP<GetMavenStaticEnergyProcess> {
public:
/**
* @brief Constructor.
*/
GetMavenStaticEnergyProcess(AMDA::Parameters::Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
GetMavenStaticEnergyProcess(const GetMavenStaticEnergyProcess& pProcess, AMDA::Parameters::Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~GetMavenStaticEnergyProcess();
// Overload Process methods
/**
* @overload Process::init()
*/
AMDA::Parameters::TimeStamp init();
/**
* @overload init semitable
*/
void initSemiVariableTable();
};
} /* namespace MavenStatic */
} /* namespace AMDA */
#endif /* GetMavenStaticEnergyProcess_HH_ */