CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
DumpFWTGeoRecoGeometry Class Reference
Inheritance diagram for DumpFWTGeoRecoGeometry:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 DumpFWTGeoRecoGeometry (const edm::ParameterSet &config)
 
virtual ~DumpFWTGeoRecoGeometry (void)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &event, const edm::EventSetup &eventSetup) override
 
virtual void beginJob (void) override
 
virtual void endJob (void) override
 

Private Attributes

std::string m_outputFileName
 
std::string m_tag
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 15 of file DumpFWTGeoRecoGeometry.cc.

Constructor & Destructor Documentation

DumpFWTGeoRecoGeometry::DumpFWTGeoRecoGeometry ( const edm::ParameterSet config)
explicit

Definition at line 30 of file DumpFWTGeoRecoGeometry.cc.

31  :m_tag( config.getUntrackedParameter<std::string>( "tagInfo", "unknown" )),
32  m_outputFileName( config.getUntrackedParameter<std::string>( "outputFileName", "cmsTGeoReco.root" ))
33 
34 {}
T getUntrackedParameter(std::string const &, T const &) const
virtual DumpFWTGeoRecoGeometry::~DumpFWTGeoRecoGeometry ( void  )
inlinevirtual

Definition at line 19 of file DumpFWTGeoRecoGeometry.cc.

19 {}

Member Function Documentation

void DumpFWTGeoRecoGeometry::analyze ( const edm::Event event,
const edm::EventSetup eventSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 37 of file DumpFWTGeoRecoGeometry.cc.

References mergeVDriftHistosByStation::file, relativeConstraints::geom, edm::EventSetup::get(), m_outputFileName, and m_tag.

38 {
39  using namespace edm;
40 
42  eventSetup.get<FWTGeoRecoGeometryRecord>().get( geoh );
43  TGeoManager *geom = geoh.product()->manager();//const_cast<TGeoManager*>( geoh.product()->manager());
44 
45  TFile file( m_outputFileName.c_str(), "RECREATE" );
46  file.WriteTObject( &*geom );
47  file.WriteTObject(new TNamed("CMSSW_VERSION", gSystem->Getenv( "CMSSW_VERSION" )));
48  file.WriteTObject(new TNamed("tag", m_tag.c_str()));
49  file.Close();
50 }
const T & get() const
Definition: EventSetup.h:55
void DumpFWTGeoRecoGeometry::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 53 of file DumpFWTGeoRecoGeometry.cc.

54 {}
void DumpFWTGeoRecoGeometry::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 57 of file DumpFWTGeoRecoGeometry.cc.

58 {}

Member Data Documentation

std::string DumpFWTGeoRecoGeometry::m_outputFileName
private

Definition at line 27 of file DumpFWTGeoRecoGeometry.cc.

Referenced by analyze().

std::string DumpFWTGeoRecoGeometry::m_tag
private

Definition at line 26 of file DumpFWTGeoRecoGeometry.cc.

Referenced by analyze().