CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/CondTools/Geometry/plugins/RPCRecoIdealDBLoader.h

Go to the documentation of this file.
00001 #ifndef CondTools_RPCRecoIdealDBLoader_h
00002 #define CondTools_RPCRecoIdealDBLoader_h
00003 
00004 #include "FWCore/Framework/interface/EDAnalyzer.h"
00005 #include "FWCore/Framework/interface/Event.h"
00006 #include "FWCore/Framework/interface/EventSetup.h"
00007 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00008 
00009 #include <string>
00010 
00011 class RPCRecoIdealDBLoader : public edm::EDAnalyzer {
00012 
00013  public:
00014   explicit RPCRecoIdealDBLoader( const edm::ParameterSet& iConfig );
00015   ~RPCRecoIdealDBLoader();
00016   virtual void beginRun( const edm::Run&, edm::EventSetup const& );
00017   virtual void analyze( const edm::Event&, const edm::EventSetup& ){}
00018   virtual void endJob() {};
00019 
00020  private:
00021   std::string label_;
00022   int rotNumSeed_;
00023 };
00024 
00025 #endif