Blame view

src/ExternLib/Maglib/MLTProcess.cc 2.47 KB
afa22fae   Hacene SI HADJ MOHAND   presque
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
/*
 * 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) {
e88e22d1   Hacene SI HADJ MOHAND   in progress
26
            _processType = "mlt";
afa22fae   Hacene SI HADJ MOHAND   presque
27
28
29
        }

        MLTProcess::MLTProcess(const MLTProcess& pProcess, Parameter &parameter) : SingleParamProcess_CRTP(pProcess, parameter) {
e88e22d1   Hacene SI HADJ MOHAND   in progress
30
            _processType = "mlt";
afa22fae   Hacene SI HADJ MOHAND   presque
31
32
33
34
35
36
37
38
39
        }

        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();

e7ad78e9   Hacene SI HADJ MOHAND   rrmag non transmis
40
41
            int isatex_ = 0;
            int magout_= 2;
afa22fae   Hacene SI HADJ MOHAND   presque
42
43

            if (_attributList.size() == 2) {
e7ad78e9   Hacene SI HADJ MOHAND   rrmag non transmis
44
45
                isatex_    = std::stoi(_attributList[0]);
                magout_ = std::stoi(_attributList[1]);
afa22fae   Hacene SI HADJ MOHAND   presque
46
            }
e7ad78e9   Hacene SI HADJ MOHAND   rrmag non transmis
47
            MaglibCreator lCreator(*this, *_paramInput, _processType, isatex_, magout_);
afa22fae   Hacene SI HADJ MOHAND   presque
48
49
50
51
52
53
54
55
            _operation = lCreator.getOperation();
            _paramData = ParamDataSPtr(_operation->getParamOutput());
            _paramData->setMinSampling(_paramInput->getMinSampling());
            return timeStamp;
        }

        MLTProcess::~MLTProcess() {
        }
37b19066   Hacene SI HADJ MOHAND   integration magli...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
        
                    InvLatProcess::InvLatProcess(Parameter &parameter) : MLTProcess::MLTProcess(parameter) {
                _processType = "invlat";
            }

            InvLatProcess::InvLatProcess(const MLTProcess& pProcess, Parameter& pParameter) : MLTProcess::MLTProcess(pProcess, pParameter) {
                _processType = "invlat";
            }
            
                         LparamProcess::LparamProcess(Parameter &parameter) : MLTProcess::MLTProcess(parameter) {
                _processType = "lparam";
            }

            LparamProcess::LparamProcess(const MLTProcess& pProcess, Parameter& pParameter) : MLTProcess::MLTProcess(pProcess, pParameter) {
                _processType = "lparam";
            }

afa22fae   Hacene SI HADJ MOHAND   presque
73
74
75

    }
}