Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Integration_ProdigalAnalyzer_h
0002 #define Integration_ProdigalAnalyzer_h
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/global/EDAnalyzer.h"
0006 
0007 namespace edmtest {
0008 
0009   class ProdigalAnalyzer : public edm::global::EDAnalyzer<> {
0010   public:
0011     explicit ProdigalAnalyzer(edm::ParameterSet const& pset);
0012     void analyze(edm::StreamID, edm::Event const& e, edm::EventSetup const& c) const final;
0013   };
0014 
0015 }  // namespace edmtest
0016 
0017 #endif