Blame view

src/ExternLib/Morschhauser/MorschhauserBfieldProcess.cc 1.38 KB
a98e6fc1   Benjamin Renard   First implmentati...
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
/*
 * MorschhauserBfieldProcess.cc
 *
 *  Created on: May 30, 2016
 *      Author: AKKA IS
 */
#include <stdlib.h>
#include <string>

#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 &parameter) : SingleParamProcess_CRTP(parameter) {
	}

	MorschhauserBfieldProcess::MorschhauserBfieldProcess(const MorschhauserBfieldProcess& pProcess, Parameter &parameter) : 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 */