CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoJets/JetAnalyzers/interface/SimpleJetDump.h

Go to the documentation of this file.
00001 #ifndef RecoExamples_SimpleJetDump_h
00002 #define RecoExamples_SimpleJetDump_h
00003 #include <TH1.h>
00004 /* \class SimpleJetDump
00005  *
00006  * \author Robert Harris
00007  *
00008  * \version 1
00009  *
00010  */
00011 #include "FWCore/Framework/interface/EDAnalyzer.h"
00012 
00013 class SimpleJetDump : public edm::EDAnalyzer {
00014 public:
00015   SimpleJetDump( const edm::ParameterSet & );
00016 
00017 private:
00018   void beginJob();
00019   void analyze( const edm::Event& , const edm::EventSetup& );
00020   void endJob();
00021   std::string CaloJetAlg, GenJetAlg;
00022   //Internal parameters
00023   int evtCount;
00024 };
00025 
00026 #endif