/* * MorschhauserBfieldProcess.cc * * Created on: May 30, 2016 * Author: AKKA IS */ #include #include #include "Operation.hh" #include "ParameterManager.hh" #include "MorschhauserBfieldProcess.hh" #include "MorschhauserCreator.hh" #include "ParameterCreatorFromExpression.hh" using namespace std; using namespace boost; using namespace log4cxx; namespace AMDA { namespace Parameters { MorschhauserBfieldProcess::MorschhauserBfieldProcess(Parameter ¶meter) : SingleParamProcess_CRTP(parameter) { } MorschhauserBfieldProcess::MorschhauserBfieldProcess(const MorschhauserBfieldProcess& pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess,parameter) { } MorschhauserBfieldProcess::~MorschhauserBfieldProcess() { } TimeStamp MorschhauserBfieldProcess::init() { TimeStamp timeStamp = _parameterInput->init( this, _timeIntervalList); Parameter::InfoList lInfoList = _parameterInput->getInfoList(); _parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end()); _paramInput = _parameterInput->getParamData(this).get(); MorschhauserCreator lMorschhauserCreator(*this, *_paramInput, false); _operation = lMorschhauserCreator.getOperation(); _paramData = ParamDataSPtr(_operation->getParamOutput()); _paramData->setMinSampling(_paramInput->getMinSampling()); return timeStamp; } } /* namespace Parameters */ } /* namespace AMDA */