/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/TriggerResultInserter.h
50 строк
1 KB
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
#ifndef FWCore_Framework_TriggerResultsInserter_h #define FWCore_Framework_TriggerResultsInserter_h /* Author: Jim Kowalkowski 15-1-06 This is an unusual module in that it is always present in the schedule and it is not configurable. The ownership of the bitmask is shared with the scheduler Its purpose is to create a TriggerResults instance and insert it into the event. */ #include <vector> #include "FWCore/Framework/interface/global/EDProducer.h" #include "DataFormats/Provenance/interface/ParameterSetID.h" #include "FWCore/Utilities/interface/propagate_const.h" #include <memory> namespace edm { class ParameterSet; class Event; class EventSetup; class HLTGlobalStatus; class TriggerResults; class TriggerResultInserter : public edm::global::EDProducer<> { public: typedef std::shared_ptr<HLTGlobalStatus> TrigResPtr; // standard constructor not supported for this module explicit TriggerResultInserter(edm::ParameterSet const& ps); // the pset needed here is the one that defines the trigger path names TriggerResultInserter(edm::ParameterSet const& ps, unsigned int iNStreams); void setTrigResultForStream(unsigned int iStreamIndex, const TrigResPtr& trptr); void produce(StreamID id, edm::Event& e, edm::EventSetup const& c) const final; private: std::vector<edm::propagate_const<TrigResPtr>> resultsPerStream_; ParameterSetID pset_id_; EDPutTokenT<TriggerResults> token_; }; } // namespace edm #endif