CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/CondTools/Geometry/plugins/DTRecoIdealDBLoader.h

Go to the documentation of this file.
00001 #ifndef CondTools_DTRecoIdealDBLoader_h
00002 #define CondTools_DTRecoIdealDBLoader_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 CSCGeometry;
00012 
00013 class DTRecoIdealDBLoader : public edm::EDAnalyzer {
00014 
00015  public:
00016   explicit DTRecoIdealDBLoader( const edm::ParameterSet& iConfig );
00017   ~DTRecoIdealDBLoader();
00018   virtual void beginRun( const edm::Run&, edm::EventSetup const& );
00019   virtual void analyze( const edm::Event&, const edm::EventSetup& ){}
00020   virtual void endJob() {};
00021 
00022  private:
00023   std::string label_;
00024   int rotNumSeed_;
00025 };
00026 
00027 #endif