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