CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_4/src/DQM/DataScouting/plugins/ScoutingTestAnalyzer.h

Go to the documentation of this file.
00001 #ifndef ScoutingTestAnalyzer_h
00002 #define ScoutingTestAnalyzer_h
00003 
00004 // This class is used to test the functionalities of the package
00005 
00006 
00007 #include "DQM/DataScouting/interface/ScoutingAnalyzerBase.h"
00008 
00009 class ScoutingTestAnalyzer : public ScoutingAnalyzerBase
00010  {
00011 
00012   public:
00013 
00014     explicit ScoutingTestAnalyzer( const edm::ParameterSet &  ) ;
00015     virtual ~ScoutingTestAnalyzer() ;
00016 
00017     virtual void analyze( const edm::Event & , const edm::EventSetup &  );
00018     
00019     virtual void endRun( edm::Run const &, edm::EventSetup const & ) ;
00020 
00021     virtual void bookMEs();
00022 
00023   private: 
00024     
00025     // histograms
00026     edm::InputTag m_pfJetsCollectionTag;
00027     MonitorElement * m_jetPt;
00028     MonitorElement * m_jetEtaPhi;
00029 
00030  } ;
00031 
00032 #endif
00033