CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/CondTools/SiStrip/plugins/SiStripFedCablingBuilder.h

Go to the documentation of this file.
00001 #ifndef SiStripFedCablingBuilder_H
00002 #define SiStripFedCablingBuilder_H
00003 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00004 #include "FWCore/Utilities/interface/Exception.h"
00005 #include "FWCore/Framework/interface/ESHandle.h"
00006 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00007 #include "FWCore/Framework/interface/EDAnalyzer.h"
00008 
00009 class SiStripFedCablingBuilder : public edm::EDAnalyzer {
00010 
00011  public:
00012 
00013   SiStripFedCablingBuilder( const edm::ParameterSet& iConfig);
00014 
00015   ~SiStripFedCablingBuilder(){};
00016 
00017   void beginRun( const edm::Run&, const edm::EventSetup& );
00018 
00019   void analyze(const edm::Event& , const edm::EventSetup& ) {;}
00020 
00021  private:
00022 
00023   bool printFecCabling_;
00024   bool printDetCabling_;
00025   bool printRegionCabling_;
00026 
00027 };
00028 #endif