/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/EndPathStatusInserter.h
24 строки
592 B
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
#ifndef FWCore_Framework_EndPathStatusInserter_h #define FWCore_Framework_EndPathStatusInserter_h #include "FWCore/Framework/interface/global/EDProducer.h" #include "FWCore/Utilities/interface/EDPutToken.h" namespace edm { class Event; class EventSetup; class StreamID; class EndPathStatus; class EndPathStatusInserter : public global::EDProducer<> { public: explicit EndPathStatusInserter(unsigned int numberOfStreams); void produce(StreamID, Event&, EventSetup const&) const final; private: EDPutTokenT<EndPathStatus> token_; }; } // namespace edm #endif