KT17_MagProcess.cc
2.25 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
/*
* 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: KT17_MagProcess.cc
* Author: Furkan - AKKA I&S
*
* Created on January 19, 2022, 4:14 PM
*/
#include <stdlib.h>
#include <string>
#include "Operation.hh"
#include "ParameterManager.hh"
#include "ParameterCreatorFromExpression.hh"
#include "KT17_MagProcess.hh"
#include "KT17Creator.hh"
namespace AMDA
{
namespace Parameters
{
KT17_MagProcess::KT17_MagProcess(Parameter ¶meter) : SingleParamProcess_CRTP(parameter)
{
}
KT17_MagProcess::KT17_MagProcess(const KT17_MagProcess &pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess, parameter)
{
}
TimeStamp KT17_MagProcess::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 R_sun && disIndex*/
std::string inputRef = "MSO";
double rSun = NAN ;
double distIndex = NAN;
if(!_attributList.empty()){
if (_attributList[0] == "MSO" || _attributList[0] == "MSM")
inputRef = _attributList[0];
if (_attributList.size() == 3){
rSun = std::stod(_attributList[1]);
distIndex = std::stod(_attributList[2]);
}
KT17Creator lCreator(*this, *_paramInput, "mag", inputRef,rSun, distIndex);
_operation = lCreator.getOperation();
_paramData = ParamDataSPtr(_operation->getParamOutput());
_paramData->setMinSampling(_paramInput->getMinSampling());
return timeStamp;
}
else{
BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg(" KT17: need the coordRef"));
}
}
KT17_MagProcess::~KT17_MagProcess()
{
}
}
}