CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/CondTools/Geometry/plugins/XMLGeometryBuilder.h

Go to the documentation of this file.
00001 #ifndef CondToolsGeometry_XMLGeometryBuilder_h
00002 #define CondToolsGeometry_XMLGeometryBuilder_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 
00012 class XMLGeometryBuilder : public edm::EDAnalyzer {
00013 
00014  public:
00015   explicit XMLGeometryBuilder( const edm::ParameterSet& iConfig );
00016   ~XMLGeometryBuilder();
00017   virtual void beginJob();
00018   virtual void analyze( const edm::Event&, const edm::EventSetup& ){}
00019   virtual void endJob() {};
00020  private:
00021   std::string fname;
00022   bool zip;
00023 };
00024 
00025 #endif