CMS 3D CMS Logo

DumpFWRecoGeometry.cc
Go to the documentation of this file.
8 
9 #include "TFile.h"
10 #include "TTree.h"
11 #include "TError.h"
12 #include "TSystem.h"
13 
15 {
16 public:
17  explicit DumpFWRecoGeometry( const edm::ParameterSet& config );
18  ~DumpFWRecoGeometry( void ) override {}
19 
20 private:
21  void analyze( const edm::Event& event, const edm::EventSetup& eventSetup ) override;
22  void beginJob( void ) override;
23  void endJob( void ) override;
24 
25  int m_level;
28 };
29 
31  : m_level( config.getUntrackedParameter<int>( "level", 1 )),
32  m_tag( config.getUntrackedParameter<std::string>( "tagInfo", "unknown" )),
33 
34  m_outputFileName( config.getUntrackedParameter<std::string>( "outputFileName", "cmsRecoGeo.root" ))
35 {}
36 
37 void
39 {
40  using namespace edm;
41 
43  eventSetup.get<FWRecoGeometryRecord>().get( geoh );
44  TFile file( m_outputFileName.c_str(), "RECREATE" );
45 
46  TTree *tree = new TTree("idToGeo", "raw detector id association with geometry ANT");
47 
48  UInt_t v_id;
49  Float_t v_vertex[24];
50  Float_t v_params[9];
51  Float_t v_shape[5];
52  Float_t v_translation[3];
53  Float_t v_matrix[9];
54 
55  tree->SetBranchStyle( 0 );
56  tree->Branch( "id", &v_id, "id/i" );
57  tree->Branch( "points", &v_vertex, "points[24]/F" );
58  tree->Branch( "topology", &v_params, "topology[9]/F" );
59  tree->Branch( "shape", &v_shape, "shape[5]/F" );
60  tree->Branch( "translation", &v_translation, "translation[3]/F" );
61  tree->Branch( "matrix", &v_matrix, "matrix[9]/F" );
62 
63  for( FWRecoGeom::InfoMapItr it = geoh.product()->idToName.begin(),
64  end = geoh.product()->idToName.end();
65  it != end; ++it )
66  {
67  v_id = it->id;
68  for( unsigned int i = 0; i < 24; ++i )
69  v_vertex[i] = it->points[i];
70  for( unsigned int i = 0; i < 9; ++i )
71  v_params[i] = it->topology[i];
72  for( unsigned int i = 0; i < 5; ++i )
73  v_shape[i] = it->shape[i];
74  for( unsigned int i = 0; i < 3; ++i )
75  v_translation[i] = it->translation[i];
76  for( unsigned int i = 0; i < 9; ++i )
77  v_matrix[i] = it->matrix[i];
78  tree->Fill();
79  }
80  file.WriteTObject( tree );
81 
82 
83  file.WriteTObject(new TNamed("CMSSW_VERSION", gSystem->Getenv( "CMSSW_VERSION" )));
84  file.WriteTObject(new TNamed("tag", m_tag.c_str()));
85  file.WriteTObject(&geoh.product()->extraDet, "ExtraDetectors");
86  file.WriteTObject(new TNamed("PRODUCER_VERSION", "1")); // version 2 changes pixel parameters
87 
88 
89  file.WriteTObject(new TNamed("TrackerTopology", geoh.product()->trackerTopologyXML));
90 
91  file.Close();
92 }
93 
94 void
96 {}
97 
98 void
100 {}
101 
std::vector< FWRecoGeom::Info >::const_iterator InfoMapItr
Definition: FWRecoGeom.h:28
std::string trackerTopologyXML
~DumpFWRecoGeometry(void) override
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
Definition: config.py:1
FWRecoGeom::InfoMap idToName
std::string m_outputFileName
#define end
Definition: vmac.h:39
void analyze(const edm::Event &event, const edm::EventSetup &eventSetup) override
void beginJob(void) override
T const * product() const
DumpFWRecoGeometry(const edm::ParameterSet &config)
void endJob(void) override
TObjArray extraDet
HLT enums.
T get() const
Definition: EventSetup.h:62
Definition: tree.py:1
Definition: event.py:1