/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/GlobalTrigger/plugins/ConvertObjectMapRecord.h
39 строк
1 KB
Cms Build
Clang-Format
09 май 2019, 07:10
09 май 2019, 07:10
7d1626a
Код
Авторство
О чём код?
#ifndef L1Trigger_GlobalTrigger_ConvertObjectMapRecord_h #define L1Trigger_GlobalTrigger_ConvertObjectMapRecord_h /** * \class ConvertObjectMapRecord * * * Description: Reads in the L1GlobalTriggerObjectMapRecord * and copies the information it contains into * a L1GlobalTriggerObjectMaps object and also * puts the names it contains into the ParameterSet * registry. * * Implementation: * <TODO: enter implementation details> * * \author: Vasile Mihai Ghete - HEPHY Vienna * \author: W. David Dagenhart * * */ #include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerObjectMapRecord.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/stream/EDProducer.h" #include "FWCore/Utilities/interface/InputTag.h" class ConvertObjectMapRecord : public edm::stream::EDProducer<> { public: explicit ConvertObjectMapRecord(const edm::ParameterSet &pset); ~ConvertObjectMapRecord() override; void produce(edm::Event &event, const edm::EventSetup &es) override; private: edm::EDGetTokenT<L1GlobalTriggerObjectMapRecord> m_l1GtObjectMapToken; }; #endif