Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:26

0001 #ifndef RecoExamples_SimpleJetDump_h
0002 #define RecoExamples_SimpleJetDump_h
0003 #include <TH1.h>
0004 /* \class SimpleJetDump

0005  *

0006  * \author Robert Harris

0007  *

0008  * \version 1

0009  *

0010  */
0011 #include "FWCore/Framework/interface/one/EDAnalyzer.h"
0012 
0013 class SimpleJetDump : public edm::one::EDAnalyzer<> {
0014 public:
0015   SimpleJetDump(const edm::ParameterSet&);
0016 
0017 private:
0018   void beginJob() override;
0019   void analyze(const edm::Event&, const edm::EventSetup&) override;
0020   void endJob() override;
0021   std::string CaloJetAlg, GenJetAlg;
0022   //Internal parameters

0023   int evtCount;
0024 };
0025 
0026 #endif