/* * GetClbInfoByIndexProcess.cc * * Created on: Sep 24, 2015 * Author: AKKA */ #include #include #include "AMDA_exception.hh" #include "DicError.hh" #include "Operation.hh" #include "ParameterManager.hh" #include "GetClbInfoByIndexProcess.hh" #include "GetClbInfoByIndexCreator.hh" #include "ParameterCreatorFromExpression.hh" using namespace std; using namespace boost; using namespace log4cxx; namespace AMDA { namespace GetClbInfoByIndex { GetClbInfoByIndexProcess::GetClbInfoByIndexProcess(Parameter ¶meter) : SingleParamProcess_CRTP(parameter) { } GetClbInfoByIndexProcess::GetClbInfoByIndexProcess(const GetClbInfoByIndexProcess& pProcess, Parameter ¶meter) : SingleParamProcess_CRTP(pProcess,parameter) { } GetClbInfoByIndexProcess::~GetClbInfoByIndexProcess() { } TimeStamp GetClbInfoByIndexProcess::init() { TimeStamp timeStamp = _parameterInput->init( this, _timeIntervalList); Parameter::InfoList lInfoList = _parameterInput->getInfoList(); _parameter.getInfoList().insert(lInfoList.begin(), lInfoList.end()); _paramInput = _parameterInput->getParamData(this).get(); if (_attributList.size() != 2) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_PROCESS_ERR) << AMDA::ex_msg(std::string("GetClbInfoByIndexProcess::init required at least two attributes. The first one for the clbInfo name, and the second one for size'"))); } GetClbInfoByIndexCreator lGetClbInfoByIndexCreator(*this,*_paramInput); _operation = lGetClbInfoByIndexCreator.getOperation(); dynamic_cast(_operation)->init(*_parameterInput,_attributList); _paramData = ParamDataSPtr(_operation->getParamOutput()); _paramData->setMinSampling(_paramInput->getMinSampling()); AMDA::Parameters::SemiVariableTable semiVariableTableElements; int i = 0; unsigned int nbHeader = 0; for (auto info : lInfoList){ semiVariableTableElements.tabValues[std::to_string(i)] = *info.second; if (nbHeader < (*info.second).size()) nbHeader = (*info.second).size(); i++; } for (unsigned int i = 0 ; i < nbHeader; i++) semiVariableTableElements.tabHeader.push_back("Energy[" + std::to_string(i)+"]"); this->setSemiVariableTable(semiVariableTableElements); if (!semiVariableTableElements.tabValues.empty()) _parameterInput->setIsTableIndexParam(true); return timeStamp; } } /* namespace GetClbInfo */ } /* namespace AMDA */