MorschhauserBmagProcess.hh
921 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
/*
* MorschhauserBmagProcess.hh
*
* Created on: May 30, 2016
* Author: AKKA IS
*/
#ifndef MorschhauserBmagProcess_HH_
#define MorschhauserBmagProcess_HH_
#include "SingleParamProcess.hh"
namespace AMDA {
namespace Parameters {
/**
* @class MorschhauserBmagProcess_HH_
* @brief Process to compute Morshhauser Mars Model Magnetic Field along an orbit.
*/
class MorschhauserBmagProcess : public AMDA::Parameters::SingleParamProcess_CRTP<MorschhauserBmagProcess> {
public:
/**
* @brief Constructor.
*/
MorschhauserBmagProcess(Parameter ¶meter);
/**
* @brief Copy Constructor.
*/
MorschhauserBmagProcess(const MorschhauserBmagProcess& pProcess, Parameter &pParameter) ;
/**
* @brief Destructor.
*/
~MorschhauserBmagProcess();
/**
* @overload DataWriter::init()
*/
TimeStamp init();
};
} /* namespace Parameters */
} /* namespace AMDA */
#endif /* MorschhauserBmagProcess_HH_ */