KT17_MagProcess.cc 2.25 KB
/*
 * 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";
            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()
        {
        }
    }
}