File indexing completed on 2023-03-17 11:02:52
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
0009
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 }
0021 #endif