/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Integration/plugins/HistProducer.h
21 строка
532 B
Chris Jones
Moved plugins to FWCore/Integration/plugins
10 янв 2023, 17:49
10 янв 2023, 17:49
974ebbd
Код
Авторство
О чём код?
#ifndef FWCore_Integration_HistProducer_h #define FWCore_Integration_HistProducer_h #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/global/EDProducer.h" namespace edmtest { //struct ThingWithHist { // TH1F hist_; // }; class HistProducer : public edm::global::EDProducer<> { public: explicit HistProducer(edm::ParameterSet const& ps); void produce(edm::StreamID, edm::Event& e, edm::EventSetup const& c) const override; private: }; } // namespace edmtest #endif