#ifndef RecoExamples_GoniJetPlots_h #define RecoExamples_GoniJetPlots_h #include-- SeoKonKang - 07 Apr 2010/* \class GoniJetPlots * * \author Robert Harris * \Modified by seogoni * \version 1 * */ #include "FWCore/Framework/interface/EDAnalyzer.h" class TFile; class GoniJetPlots : public edm::EDAnalyzer { public: GoniJetPlots( const edm::ParameterSet & ); private: //void beginJob( const edm::EventSetup & ); void beginJob(); void analyze( const edm::Event& , const edm::EventSetup& ); void endJob(); std::string CaloJetAlgorithm, GenJetAlgorithm; TH1F* jpe;// histogram, the number of Jets per event TH1F* sjpe;// the number of selected jets per event TH1F* nEvent;// The number of events which satisfied selection condition TH1F* h_ptCal; TH1F* h_etaCal; TH1F* h_phiCal; TH1F* emfCal; TH1F* fHPDCal; TH1F* fRBXCal; TH1F* n90HitsCal; TFile* m_file; }; #endif