/* * 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 #include #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() { } } }