CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DQMOffline/PFTau/plugins/PFJetDQMAnalyzer.h

Go to the documentation of this file.
00001 #ifndef __DQMOffline_PFTau_PFJetDQMAnalyzer__
00002 #define __DQMOffline_PFTau_PFJetDQMAnalyzer__
00003 
00004 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00005 #include "FWCore/Framework/interface/Frameworkfwd.h"
00006 #include "FWCore/Framework/interface/EDAnalyzer.h"
00007 
00008 #include "FWCore/Utilities/interface/InputTag.h"
00009 
00010 #include "DQMOffline/PFTau/interface/PFJetMonitor.h"
00011 
00012 
00013 class PFJetDQMAnalyzer: public edm::EDAnalyzer {
00014  public:
00015   
00016   PFJetDQMAnalyzer(const edm::ParameterSet& parameterSet);
00017   
00018  private:
00019   void analyze(edm::Event const&, edm::EventSetup const&);
00020   void beginJob() ;
00021   void endJob();
00022 
00023   void storeBadEvents(edm::Event const&, float& val);
00024 
00025   edm::InputTag matchLabel_;
00026   edm::InputTag inputLabel_;
00027   std::string benchmarkLabel_;
00028   
00029   PFJetMonitor pfJetMonitor_;
00030 
00031   edm::ParameterSet pSet_;
00032   int nBadEvents_;
00033 };
00034 
00035 #endif