/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/GlobalTrigger/plugins/CompareToObjectMapRecord.h
40 строк
1 KB
Christopher Jones
converted CompareToObjectMapRecord to one::EDAnalyzer
20 окт 2022, 18:54
20 окт 2022, 18:54
79c1014
Код
Авторство
О чём код?
#ifndef L1Trigger_GlobalTrigger_CompareToObjectMapRecord_h #define L1Trigger_GlobalTrigger_CompareToObjectMapRecord_h /** * \class CompareToObjectMapRecord * * * Description:Compares the L1GlobalTriggerObjectMapRecord * to the L1GlobalTriggerObjectMaps object and * also the ParameterSet registry and verifies that * the information is consistent or else it * throws. * * Implementation: * <TODO: enter implementation details> * * \author: Vasile Mihai Ghete - HEPHY Vienna * \author: W. David Dagenhart * * */ #include "FWCore/Framework/interface/one/EDAnalyzer.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Utilities/interface/InputTag.h" class CompareToObjectMapRecord : public edm::one::EDAnalyzer<> { public: explicit CompareToObjectMapRecord(const edm::ParameterSet &pset); ~CompareToObjectMapRecord() override; void analyze(edm::Event const &event, edm::EventSetup const &es) override; private: edm::InputTag m_l1GtObjectMapTag; edm::InputTag m_l1GtObjectMapsTag; bool verbose_; }; #endif