MLTProcess.cc
1.75 KB
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
49
50
51
52
53
54
55
56
57
58
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: MLTProcess.cc
* Author: hacene
*
* Created on July 23, 2020, 4:14 PM
*/
#include <stdlib.h>
#include <string>
#include "Operation.hh"
#include "ParameterManager.hh"
#include "ParameterCreatorFromExpression.hh"
#include "MLTProcess.hh"
#include "MaglibCreator.hh"
namespace AMDA {
namespace Parameters {
MLTProcess::MLTProcess(Parameter& parameter) : SingleParamProcess_CRTP(parameter) {
_processType = "mlt";
}
MLTProcess::MLTProcess(const MLTProcess& pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess, parameter) {
_processType = "mlt";
}
TimeStamp MLTProcess::init() {
TimeStamp timeStamp = _parameterInput->init(this, _timeIntervalList);
Parameter::InfoList lInfoList = _parameterInput->getInfoList();
_parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
_paramInput = _parameterInput->getParamData(this).get();
std::string isatex_str = "0";
std::string magout_str = "2";
if (_attributList.size() == 2) {
isatex_str = _attributList[0];
magout_str = _attributList[1];
}
MaglibCreator lCreator(*this, *_paramInput, _processType, isatex_str, isatex_str);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return timeStamp;
}
MLTProcess::~MLTProcess() {
}
}
}