/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1TriggerConfig/RPCTriggerConfig/src/RPCTriggerHsbConfig.cc
91 строка
2 KB
Cms Build
Clang-Format
16 май 2019, 10:51
16 май 2019, 10:51
bf1a5e0
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: RPCTriggerHsbConfig // Class: RPCTriggerHsbConfig // /**\class RPCTriggerHsbConfig RPCTriggerHsbConfig.h L1TriggerConfig/RPCTriggerHsbConfig/src/RPCTriggerHsbConfig.cc Description: <one line class summary> Implementation: <Notes on implementation> */ // // Original Author: Tomasz Maciej Frueboes // Created: Wed Apr 9 13:57:29 CEST 2008 // // // system include files #include <memory> // user include files #include "FWCore/Framework/interface/ModuleFactory.h" #include "FWCore/Framework/interface/ESProducer.h" #include "FWCore/Framework/interface/ESHandle.h" #include "CondFormats/DataRecord/interface/L1RPCHsbConfigRcd.h" #include "CondFormats/L1TObjects/interface/L1RPCHsbConfig.h" // // class decleration // class RPCTriggerHsbConfig : public edm::ESProducer { public: RPCTriggerHsbConfig(const edm::ParameterSet&); ~RPCTriggerHsbConfig() override; typedef std::unique_ptr<L1RPCHsbConfig> ReturnType; ReturnType produce(const L1RPCHsbConfigRcd&); private: std::vector<int> m_hsb0; std::vector<int> m_hsb1; }; // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // RPCTriggerHsbConfig::RPCTriggerHsbConfig(const edm::ParameterSet& iConfig) { //the following line is needed to tell the framework what // data is being produced setWhatProduced(this); m_hsb0 = iConfig.getParameter<std::vector<int> >("hsb0Mask"); m_hsb1 = iConfig.getParameter<std::vector<int> >("hsb1Mask"); if (m_hsb0.size() != 8 || m_hsb1.size() != 8) throw cms::Exception("BadConfig") << " hsbMask needs to be 8 digits long \n"; // contents of the vector wont be checked here - there are also different sources of this cfg } RPCTriggerHsbConfig::~RPCTriggerHsbConfig() {} // // member functions // // ------------ method called to produce the data ------------ RPCTriggerHsbConfig::ReturnType RPCTriggerHsbConfig::produce(const L1RPCHsbConfigRcd& iRecord) { auto pRPCTriggerHsbConfig = std::make_unique<L1RPCHsbConfig>(); pRPCTriggerHsbConfig->setHsbMask(0, m_hsb0); pRPCTriggerHsbConfig->setHsbMask(1, m_hsb1); return pRPCTriggerHsbConfig; } //define this as a plug-in DEFINE_FWK_EVENTSETUP_MODULE(RPCTriggerHsbConfig);