CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Validation/RPCRecHits/interface/RPCRecHitValid.h

Go to the documentation of this file.
00001 #ifndef Validation_RPCRecHits_RPCRecHitValid_h
00002 #define Validaiton_RPCRecHits_RPCRecHitValid_h
00003 
00004 #include "FWCore/Framework/interface/Frameworkfwd.h"
00005 #include "FWCore/Framework/interface/EDAnalyzer.h"
00006 
00007 #include "FWCore/Framework/interface/Event.h"
00008 #include "FWCore/Framework/interface/EventSetup.h"
00009 #include "FWCore/Utilities/interface/InputTag.h"
00010 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00011 
00012 #include "FWCore/ServiceRegistry/interface/Service.h"
00013 #include "DQMServices/Core/interface/DQMStore.h"
00014 #include "DQMServices/Core/interface/MonitorElement.h"
00015 
00016 #include "Validation/RPCRecHits/interface/RPCValidHistograms.h"
00017 
00018 #include <string>
00019 
00020 class RPCRecHitValid : public edm::EDAnalyzer
00021 {
00022 public:
00023   RPCRecHitValid(const edm::ParameterSet& pset);
00024   ~RPCRecHitValid();
00025 
00026   void analyze(const edm::Event& event, const edm::EventSetup& eventSetup);
00027   void beginJob();
00028   void endJob();
00029 
00030 private:
00031   edm::InputTag simHitLabel_, recHitLabel_;
00032 
00033   DQMStore* dbe_;
00034   std::string rootFileName_;
00035   bool isStandAloneMode_;
00036 
00037   RPCValidHistograms h_;
00038 };
00039 
00040 #endif