/* * 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 { 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_ */