test
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
DumpSimGeometry Class Reference

#include <Reve/DumpSimGeometry/src/DumpSimGeometry.cc>

Inheritance diagram for DumpSimGeometry:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 DumpSimGeometry (const edm::ParameterSet &)
 
 ~DumpSimGeometry ()
 
- 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 (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &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 &, const edm::EventSetup &) 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

Description: <one line="" class="" summary>="">

Implementation: <Notes on="" implementation>="">

Definition at line 49 of file DumpSimGeometry.cc.

Constructor & Destructor Documentation

DumpSimGeometry::DumpSimGeometry ( const edm::ParameterSet ps)
explicit

Definition at line 67 of file DumpSimGeometry.cc.

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

68 {
69  m_tag = ps.getUntrackedParameter<std::string>("tag", "unknown");
70  m_outputFileName = ps.getUntrackedParameter<std::string>("outputFileName", "cmsSimGeom.root");
71 
72 }
std::string m_tag
T getUntrackedParameter(std::string const &, T const &) const
std::string m_outputFileName
DumpSimGeometry::~DumpSimGeometry ( )

Definition at line 75 of file DumpSimGeometry.cc.

76 {
77  // do anything here that needs to be done at desctruction time
78  // (e.g. close files, deallocate resources etc.)
79 }

Member Function Documentation

void DumpSimGeometry::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 84 of file DumpSimGeometry.cc.

References gather_cfg::cout, f, relativeConstraints::geom, edm::EventSetup::get(), testEve_cfg::level, m_outputFileName, and m_tag.

85 {
86  std::cout << "In the DumpSimGeometry::analyze method..." << std::endl;
87  using namespace edm;
88 
90  iSetup.get<DisplayGeomRecord>().get(geoh);
91  const TGeoManager *geom = geoh.product(); // const_cast<TGeoManager*>(geoh.product());
92 
93  int level = 1 + geom->GetTopVolume()->CountNodes(100, 3);
94 
95  std::cout << "In the DumpSimGeometry::analyze method...obtained main geometry, level="
96  << level << std::endl;
97 
98  // TFile f(TString::Format("cmsSimGeom-%d.root", level), "RECREATE");
99  TFile f(m_outputFileName.c_str(), "RECREATE");
100  f.WriteTObject(geom);
101  f.WriteTObject(new TNamed("CMSSW_VERSION", gSystem->Getenv( "CMSSW_VERSION" )));
102  f.WriteTObject(new TNamed("tag", m_tag.c_str()));
103  f.Close();
104 }
std::string m_tag
double f[11][100]
const T & get() const
Definition: EventSetup.h:56
std::string m_outputFileName
tuple cout
Definition: gather_cfg.py:145
tuple level
Definition: testEve_cfg.py:34

Member Data Documentation

std::string DumpSimGeometry::m_outputFileName
private

Definition at line 60 of file DumpSimGeometry.cc.

Referenced by analyze(), and DumpSimGeometry().

std::string DumpSimGeometry::m_tag
private

Definition at line 59 of file DumpSimGeometry.cc.

Referenced by analyze(), and DumpSimGeometry().