MLTProcess.cc
2.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* 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();
int isatex_ = 0;
int magout_= 2;
if (_attributList.size() == 2) {
isatex_ = std::stoi(_attributList[0]);
magout_ = std::stoi(_attributList[1]);
}
MaglibCreator lCreator(*this, *_paramInput, _processType, isatex_, magout_);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return timeStamp;
}
MLTProcess::~MLTProcess() {
}
InvLatProcess::InvLatProcess(Parameter ¶meter) : MLTProcess::MLTProcess(parameter) {
_processType = "invlat";
}
InvLatProcess::InvLatProcess(const MLTProcess& pProcess, Parameter& pParameter) : MLTProcess::MLTProcess(pProcess, pParameter) {
_processType = "invlat";
}
LparamProcess::LparamProcess(Parameter ¶meter) : MLTProcess::MLTProcess(parameter) {
_processType = "lparam";
}
LparamProcess::LparamProcess(const MLTProcess& pProcess, Parameter& pParameter) : MLTProcess::MLTProcess(pProcess, pParameter) {
_processType = "lparam";
}
}
}