/* -*- Base: 10 ; Mode: C++ -*- */ /*------------------------------------------------------------------------ ** FOST project ** -------------------------------------------------------------------------- -------------------------------------------------------------------------- FILE LOG $Revision: 1.3 $ $Date: 2012-06-15 13:04:42 $ -------------------------------------------------------------------------- CREATION V.SAC SUMMARY DESCRIPTION The main function performs the following actions : ------------------------------------------------------------------------*/ //============================================================================= // // History of code // // creation // // modification //============================================================================= /** */ //============================================================================= // Include section //============================================================================= // Standard libraries include files //----------------------------------------------------------------------------- #include // Include oriented definitions //----------------------------------------------------------------------------- // Module Kernel include files //----------------------------------------------------------------------------- #include "DicError.hh" #include "AMDA_exception.hh" #include "ServicesServer.hh" #include "PluginManager.hh" #include "CalibrationInfoWriter.hh" #include "ParamData.hh" #include "DataTypeMath.hh" using namespace AMDA::Parameters; // Other modules include files //----------------------------------------------------------------------------- /** * @details This procedure add two Calibration info calculate from 3 input pParameter Calibration info. * pAttributeList contains the name of the two results and of the 3 inputs. */ void energy_bounds(Parameter& pParameter, CalibrationInfoWriter::AttributeList& pAttributeList) { if ( pAttributeList.size() != 5) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("energy_bounds required 5 args"))); } Parameter::InfoList& lInfoList = pParameter.getInfoList(); auto lEnergyCenterIt = lInfoList.find(pAttributeList[2]); if ( lEnergyCenterIt == lInfoList.end()) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("energy_bounds not found Calibration info: ") + pAttributeList[2])); } auto lEnergyMinusIt = lInfoList.find(pAttributeList[3]); if ( lEnergyMinusIt == lInfoList.end()) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("energy_bounds not found Calibration info: ") + pAttributeList[3])); } auto lEnergyPlusIt = lInfoList.find(pAttributeList[4]); if ( lEnergyPlusIt == lInfoList.end()) { BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_INFORMATION_REQUEST_ERR) << AMDA::ex_msg(std::string("energy_bounds not found Calibration info: ") + pAttributeList[4])); } ///Compute energyMin=energyCenter-energyMinus; Parameter::InfoValuesSPtr lEnergyMin(new Parameter::InfoValues((*lEnergyCenterIt->second)-(*lEnergyMinusIt->second))); pParameter.setInfoValues(pAttributeList[0],lEnergyMin); //Compute energyMax=energyCenter+energyPlus; Parameter::InfoValuesSPtr lEnergyMax(new Parameter::InfoValues((*lEnergyCenterIt->second)+(*lEnergyPlusIt->second))); pParameter.setInfoValues(pAttributeList[1],lEnergyMax); } //============================================================================= // Methods of Class AMDAPlugin //============================================================================= /** Retrieve the Plugin version we're going to expect */ extern "C" const char* getPluginVersion() { return "(Version)"; } /** Tells us to register our functionality to an engine kernel */ extern "C" void registerPlugin(AMDA::Plugins::PluginManager & /*pm*/) { ServicesServer::getInstance()->addServiceImpl("energy_bounds",&energy_bounds); }