InternalFields_CartProcess.cc
2.61 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
76
77
78
79
80
/*
* 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 "InternalFields_CartProcess.hh"
#include "InternalFieldsCreator.hh"
namespace AMDA
{
namespace Parameters
{
InternalFields_CartProcess::InternalFields_CartProcess(Parameter ¶meter) : SingleParamProcess_CRTP(parameter)
{
}
InternalFields_CartProcess::InternalFields_CartProcess(const InternalFields_CartProcess &pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess, parameter)
{
}
TimeStamp InternalFields_CartProcess::init()
{
TimeStamp timeStamp = _parameterInput->init(this, _timeIntervalList);
Parameter::InfoList lInfoList = _parameterInput->getInfoList();
_parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end());
_paramInput = _parameterInput->getParamData(this).get();
/* Get the modelname and the boolean for the use or not of Con2020 */
std::string modelname;
if (_attributList.size() == 2)
{
switch (std::stoi(_attributList[0]))
{
case 0:
modelname = "jrm09";
break;
case 1:
modelname = "jrm33";
break;
case 2:
modelname = "isaac";
break;
default:
modelname = "jrm09";
break;
}
if (std::stoi(_attributList[1]) >= 0 && std::stoi(_attributList[1]) <= 3) // 0: no Con2020, 1 : Analytic, 2: Integral, 3: Hybrid
_addCon2020 = std::stoi(_attributList[1]);
else
_addCon2020 = 0;
}
/* Creation of the operation */
InternalFieldsCreator lCreator(*this, *_paramInput, "cart", modelname, _addCon2020);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return timeStamp;
}
InternalFields_CartProcess::~InternalFields_CartProcess()
{
}
}
}