Blame view

src/ExternLib/GetMavenStaticEnergy/GetMavenStaticEnergyProcess.cc 1.8 KB
f2db3c16   Benjamin Renard   Support variable ...
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
/*
 * GetMavenStaticEnergyProcess.cc
 *
 *  Created on: Sep 23, 2015
 *      Author: AKKA
 */
#include <stdlib.h>
#include <string>

#include "AMDA_exception.hh"
#include "DicError.hh"

#include "Operation.hh"
#include "ParameterManager.hh"
#include "GetMavenStaticEnergyProcess.hh"
#include "GetMavenStaticEnergyCreator.hh"
#include "ParameterCreatorFromExpression.hh"

using namespace std;
using namespace boost;
using namespace log4cxx;

namespace AMDA {
namespace MavenStatic {

GetMavenStaticEnergyProcess::GetMavenStaticEnergyProcess(Parameter &parameter)
  : SingleParamProcess_CRTP(parameter) {
  }

GetMavenStaticEnergyProcess::GetMavenStaticEnergyProcess(const GetMavenStaticEnergyProcess& pProcess, Parameter &parameter)
    : SingleParamProcess_CRTP(pProcess,parameter) {
  }

GetMavenStaticEnergyProcess::~GetMavenStaticEnergyProcess() {
  }

TimeStamp GetMavenStaticEnergyProcess::init() {
	TimeStamp timeStamp = _parameterInput->init( this, _timeIntervalList);
	Parameter::InfoList lInfoList = _parameterInput->getInfoList();
	_parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
	_paramInput = _parameterInput->getParamData(this).get();
1c0193a5   Benjamin Renard   Implement variabl...
42
43
44
45
46
47

	//GET Mass
	if (_attributList.size() == 0) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("GetMavenStaticEnergyProcess::init required at least one attribute for mass'")));
	}

f2db3c16   Benjamin Renard   Support variable ...
48
49
50
51
52
53
54
	GetMavenStaticEnergyCreator lGetMavenStaticEnergyCreator(*this,*_paramInput);
	_operation = lGetMavenStaticEnergyCreator.getOperation();
	dynamic_cast<Base::GetMavenStaticEnergy*>(_operation)->init(*_parameterInput,_attributList);
	_paramData = ParamDataSPtr(_operation->getParamOutput());
	_paramData->setMinSampling(_paramInput->getMinSampling());
	return timeStamp;
}
1f8dfaf6   Hacene SI HADJ MOHAND   bug at init param
55

f2db3c16   Benjamin Renard   Support variable ...
56
57
58

} /* namespace MavenStatic */
} /* namespace AMDA */