CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/Validation/RPCRecHits/interface/RPCRecHitValidClient.h

Go to the documentation of this file.
00001 #ifndef Validation_RPCRecHits_RPCRecHitValidClient_h
00002 #define Validaiton_RPCRecHits_RPCRecHitValidClient_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 <string>
00017 
00018 class RPCRecHitValidClient : public edm::EDAnalyzer
00019 {
00020 public:
00021   RPCRecHitValidClient(const edm::ParameterSet& pset);
00022   ~RPCRecHitValidClient() {};
00023 
00024   void analyze(const edm::Event& event, const edm::EventSetup& eventSetup) {};
00025   void endRun(const edm::Run& run, const edm::EventSetup& eventSetup);
00026   //void beginJob() {};
00027   //void endJob() {};
00028 
00029 private:
00030   std::string subDir_;
00031 };
00032 
00033 #endif