Blame view

src/ExternLib/Timestamp/Timestamp_Process.cc 1.62 KB
3b7530a6   Erdogan Furkan   # 6598- Creation ...
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
/*
 * 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:   InternalFields_CartProcess.cc
 * Author: Furkan - AKKA I&S
 *
 * Created on July 11, 2022, 4:14 PM
 */
#include <stdlib.h>
#include <string>

#include "Operation.hh"
#include "ParameterManager.hh"
#include "ParameterCreatorFromExpression.hh"
#include "Timestamp_Process.hh"
#include "TimestampCreator.hh"

namespace AMDA
{
    namespace Parameters
    {

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

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

        TimeStamp Timestamp_Process::init()
        {

            TimeStamp timeStamp = _parameterInput->init(this, _timeIntervalList);
            Parameter::InfoList lInfoList = _parameterInput->getInfoList();
            _parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
            _paramInput = _parameterInput->getParamData(this).get();
3b7530a6   Erdogan Furkan   # 6598- Creation ...
42
43
44
           
            /* Creation of the operation */
            
be29edb9   Erdogan Furkan   #6598 / #10557 / ...
45
            TimestampCreator lCreator(*this, *_paramInput, false);
3b7530a6   Erdogan Furkan   # 6598- Creation ...
46
47
48
49
50
51
52
53
54
55
56
            _operation = lCreator.getOperation();
            _paramData = ParamDataSPtr(_operation->getParamOutput());
            _paramData->setMinSampling(_paramInput->getMinSampling());
            return timeStamp;
        }

        Timestamp_Process::~Timestamp_Process()
        {
        }
    }
}