Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:34

0001 #ifndef FWCore_Integration_HistProducer_h
0002 #define FWCore_Integration_HistProducer_h
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/global/EDProducer.h"
0006 
0007 namespace edmtest {
0008   //struct ThingWithHist {
0009   //    TH1F hist_;
0010   // };
0011 
0012   class HistProducer : public edm::global::EDProducer<> {
0013   public:
0014     explicit HistProducer(edm::ParameterSet const& ps);
0015 
0016     void produce(edm::StreamID, edm::Event& e, edm::EventSetup const& c) const override;
0017 
0018   private:
0019   };
0020 }  // namespace edmtest
0021 #endif