CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/RPCRecHits/interface/RPCPointVsRecHit.h

Go to the documentation of this file.
00001 #ifndef Validaiton_RPCRecHits_RPCPointVsRecHit_h
00002 #define Validation_RPCRecHits_RPCPointVsRecHit_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 
00014 #include "Validation/RPCRecHits/interface/RPCValidHistograms.h"
00015 
00016 #include <string>
00017 
00018 class RPCPointVsRecHit : public edm::EDAnalyzer
00019 {
00020 public:
00021   RPCPointVsRecHit(const edm::ParameterSet& pset);
00022   ~RPCPointVsRecHit();
00023 
00024   void analyze(const edm::Event& event, const edm::EventSetup& eventSetup);
00025   void beginJob();
00026   void endJob();
00027 
00028 private:
00029   edm::InputTag refHitLabel_, recHitLabel_;
00030 
00031   DQMStore* dbe_;
00032 
00033   RPCValidHistograms h_;
00034 };
00035 
00036 #endif