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
DumpFWRecoGeometry Class Reference
Inheritance diagram for DumpFWRecoGeometry:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 DumpFWRecoGeometry (const edm::ParameterSet &config)
 
virtual ~DumpFWRecoGeometry (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

int m_level
 
std::string m_outputFileName
 
std::string m_tag
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- 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 14 of file DumpFWRecoGeometry.cc.

Constructor & Destructor Documentation

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

Definition at line 30 of file DumpFWRecoGeometry.cc.

31  : m_level( config.getUntrackedParameter<int>( "level", 1 )),
32  m_tag( config.getUntrackedParameter<std::string>( "tagInfo", "unknown" )),
33  m_outputFileName( config.getUntrackedParameter<std::string>( "outputFileName", "cmsRecoGeo.root" ))
34 {}
T getUntrackedParameter(std::string const &, T const &) const
std::string m_outputFileName
virtual DumpFWRecoGeometry::~DumpFWRecoGeometry ( void  )
inlinevirtual

Definition at line 18 of file DumpFWRecoGeometry.cc.

18 {}

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 37 of file DumpFWRecoGeometry.cc.

References end, mergeVDriftHistosByStation::file, edm::EventSetup::get(), i, m_outputFileName, m_tag, and MainPageGenerator::tree.

38 {
39  using namespace edm;
40 
42  eventSetup.get<FWRecoGeometryRecord>().get( geoh );
43  TFile file( m_outputFileName.c_str(), "RECREATE" );
44 
45  TTree *tree = new TTree("idToGeo", "raw detector id association with geometry");
46 
47  UInt_t v_id;
48  Float_t v_vertex[24];
49  Float_t v_params[9];
50  Float_t v_shape[5];
51  Float_t v_translation[3];
52  Float_t v_matrix[9];
53 
54  tree->SetBranchStyle( 0 );
55  tree->Branch( "id", &v_id, "id/i" );
56  tree->Branch( "points", &v_vertex, "points[24]/F" );
57  tree->Branch( "topology", &v_params, "topology[9]/F" );
58  tree->Branch( "shape", &v_shape, "shape[5]/F" );
59  tree->Branch( "translation", &v_translation, "translation[3]/F" );
60  tree->Branch( "matrix", &v_matrix, "matrix[9]/F" );
61 
62  for( FWRecoGeom::InfoMapItr it = geoh.product()->idToName.begin(),
63  end = geoh.product()->idToName.end();
64  it != end; ++it )
65  {
66  v_id = it->id;
67  for( unsigned int i = 0; i < 24; ++i )
68  v_vertex[i] = it->points[i];
69  for( unsigned int i = 0; i < 9; ++i )
70  v_params[i] = it->topology[i];
71  for( unsigned int i = 0; i < 5; ++i )
72  v_shape[i] = it->shape[i];
73  for( unsigned int i = 0; i < 3; ++i )
74  v_translation[i] = it->translation[i];
75  for( unsigned int i = 0; i < 9; ++i )
76  v_matrix[i] = it->matrix[i];
77  tree->Fill();
78  }
79  file.WriteTObject( tree );
80 
81 
82  file.WriteTObject(new TNamed("CMSSW_VERSION", gSystem->Getenv( "CMSSW_VERSION" )));
83  file.WriteTObject(new TNamed("tag", m_tag.c_str()));
84  file.WriteTObject(&geoh.product()->extraDet, "ExtraDetectors");
85 
86 
87 
88  file.Close();
89 }
std::vector< FWRecoGeom::Info >::const_iterator InfoMapItr
Definition: FWRecoGeom.h:28
int i
Definition: DBlmapReader.cc:9
std::string m_outputFileName
#define end
Definition: vmac.h:37
const T & get() const
Definition: EventSetup.h:55
void DumpFWRecoGeometry::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 92 of file DumpFWRecoGeometry.cc.

93 {}
void DumpFWRecoGeometry::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 96 of file DumpFWRecoGeometry.cc.

97 {}

Member Data Documentation

int DumpFWRecoGeometry::m_level
private

Definition at line 25 of file DumpFWRecoGeometry.cc.

std::string DumpFWRecoGeometry::m_outputFileName
private

Definition at line 27 of file DumpFWRecoGeometry.cc.

Referenced by analyze().

std::string DumpFWRecoGeometry::m_tag
private

Definition at line 26 of file DumpFWRecoGeometry.cc.

Referenced by analyze().