Blame view

src/ExternLib/KT17/KT17_MagProcess.cc 2.25 KB
fc7f9882   Erdogan Furkan   Kernel part for #...
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
/*
 * 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 &parameter) : SingleParamProcess_CRTP(parameter)
        {
        }

        KT17_MagProcess::KT17_MagProcess(const KT17_MagProcess &pProcess, Parameter &parameter) : 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";
fc7f9882   Erdogan Furkan   Kernel part for #...
45
46
47
48
49
50
51
52
            double rSun = NAN ;
            double distIndex = NAN;

            if(!_attributList.empty()){
                if (_attributList[0] == "MSO" || _attributList[0] == "MSM")
                    inputRef = _attributList[0];
                
                if (_attributList.size() == 3){
274e80eb   Erdogan Furkan   Final fixes for kt17
53
54
                    rSun = std::stod(_attributList[1]);
                    distIndex = std::stod(_attributList[2]);
fc7f9882   Erdogan Furkan   Kernel part for #...
55
56
                }

274e80eb   Erdogan Furkan   Final fixes for kt17
57
                KT17Creator lCreator(*this, *_paramInput, "mag", inputRef,rSun, distIndex);
fc7f9882   Erdogan Furkan   Kernel part for #...
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
                _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()
        {
        }
    }
}