00001 #ifndef AlphaTVarAnalyzer_h 00002 #define AlphaTVarAnalyzer_h 00003 00004 00005 #include "DQM/DataScouting/interface/ScoutingAnalyzerBase.h" 00006 00007 class AlphaTVarAnalyzer : public ScoutingAnalyzerBase 00008 { 00009 00010 public: 00011 00012 explicit AlphaTVarAnalyzer( const edm::ParameterSet & ) ; 00013 virtual ~AlphaTVarAnalyzer() ; 00014 00015 virtual void analyze( const edm::Event & , const edm::EventSetup & ); 00016 00017 virtual void endRun( edm::Run const &, edm::EventSetup const & ) ; 00018 00019 virtual void bookMEs(); 00020 00021 private: 00022 00023 edm::InputTag m_jetCollectionTag; 00024 edm::InputTag m_alphaTVarCollectionTag; 00025 00026 //inclusive histograms by jet number 00027 MonitorElement * m_HTAlphaT; 00028 MonitorElement * m_HTAlphaTg0p55; 00029 MonitorElement * m_HTAlphaTg0p60; 00030 00031 } ; 00032 00033 #endif