CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DDTestDumpFile Class Reference
Inheritance diagram for DDTestDumpFile:
edm::one::EDAnalyzer<> edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

void analyze (edm::Event const &iEvent, edm::EventSetup const &) override
 
void beginJob () override
 
 DDTestDumpFile (const edm::ParameterSet &)
 
void endJob () override
 
- Public Member Functions inherited from edm::one::EDAnalyzer<>
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

std::string m_outputFileName
 
std::string m_tag
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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 14 of file DDTestDumpFile.cc.

Constructor & Destructor Documentation

DDTestDumpFile::DDTestDumpFile ( const edm::ParameterSet iConfig)
explicit

Definition at line 27 of file DDTestDumpFile.cc.

References edm::ParameterSet::getUntrackedParameter(), m_outputFileName, m_tag, and AlCaHLTBitMon_QueryRunRegistry::string.

28 {
29  m_tag = iConfig.getUntrackedParameter<std::string>( "tag", "unknown" );
30  m_outputFileName = iConfig.getUntrackedParameter<std::string>( "outputFileName", "cmsDD4HepGeom.root" );
31 }
T getUntrackedParameter(std::string const &, T const &) const
std::string m_outputFileName
std::string m_tag

Member Function Documentation

void DDTestDumpFile::analyze ( edm::Event const &  iEvent,
edm::EventSetup const &   
)
overridevirtual

Implements edm::one::EDAnalyzerBase.

Definition at line 34 of file DDTestDumpFile.cc.

References gather_cfg::cout, DEFINE_FWK_MODULE, heppy_report::description, align::Detector, FrontierConditions_GlobalTag_cff::file, relativeConstraints::geom, hcalDigis_cfi::level, m_outputFileName, and m_tag.

Referenced by beginJob().

35 {
36  std::cout << "DDTestDumpFile::analyze:\n";
37  dd4hep::Detector& description = dd4hep::Detector::getInstance();
38  TGeoManager& geom = description.manager();
39 
40  int level = 1 + geom.GetTopVolume()->CountNodes( 100, 3 );
41 
42  std::cout << "In the DDTestDumpFile::analyze method...obtained main geometry, level="
43  << level << std::endl;
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 }
std::string m_outputFileName
std::string m_tag
void DDTestDumpFile::beginJob ( void  )
inlineoverridevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 18 of file DDTestDumpFile.cc.

References analyze(), and iEvent.

18 {}
void DDTestDumpFile::endJob ( void  )
inlineoverridevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 20 of file DDTestDumpFile.cc.

20 {}

Member Data Documentation

std::string DDTestDumpFile::m_outputFileName
private

Definition at line 24 of file DDTestDumpFile.cc.

Referenced by analyze(), and DDTestDumpFile().

std::string DDTestDumpFile::m_tag
private

Definition at line 23 of file DDTestDumpFile.cc.

Referenced by analyze(), and DDTestDumpFile().