DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
LCDD2Output.cpp
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 // Author : M.Frank
11 //
12 //==========================================================================
13 
14 // Framework includes
15 #include <XML/Conversions.h>
16 #include <DD4hep/Detector.h>
17 #include <DD4hep/Objects.h>
18 #include <DD4hep/Printout.h>
19 #include <DD4hep/IDDescriptor.h>
20 
21 // ROOT includes
22 #include <TMap.h>
23 #include <TROOT.h>
24 #include <TColor.h>
25 #include <TGeoMatrix.h>
26 #include <TGeoManager.h>
27 
29 #include <iostream>
30 
32 namespace dd4hep {
33 
34  void dumpNode(TGeoNode* n, int level) {
35  TGeoMatrix* mat = n->GetMatrix();
36  TGeoVolume* vol = n->GetVolume();
37  TGeoMedium* med = vol->GetMedium();
38  TGeoShape* shape = vol->GetShape();
39  TObjArray* nodes = vol->GetNodes();
40  for (int i = 0; i < level; ++i)
41  std::cout << " ";
42  std::cout << " ++Node:|" << n->GetName() << "| ";
43  std::cout << " Volume: " << vol->GetName() << " material:" << med->GetName()
44  << " shape:" << shape->GetName() << std::endl;
45  for (int i = 0; i < level; ++i)
46  std::cout << " ";
47  const Double_t* tr = mat->GetTranslation();
48  std::cout << " matrix:|" << mat->GetName()
49  << "|" << mat->IsTranslation() << mat->IsRotation() << mat->IsScale()
50  << " tr:x=" << tr[0] << " y=" << tr[1] << " z=" << tr[2];
51  if (mat->IsRotation()) {
52  Double_t theta, phi, psi;
53  TGeoRotation rot(*mat);
54  rot.GetAngles(phi, theta, psi);
55  std::cout << " rot: theta:" << theta << " phi:" << phi << " psi:" << psi;
56  }
57  std::cout << std::endl;
58  PlacedVolume plv(n);
59  for (int i = 0; i < level; ++i)
60  std::cout << " ";
61  std::cout << " volume:" << plv.toString();
62  std::cout << std::endl;
63  TIter next(nodes);
64  TGeoNode *geoNode;
65  while ((geoNode = (TGeoNode *) next())) {
66  dumpNode(geoNode, level + 1);
67  }
68  }
69 
70  void dumpVolume(TGeoVolume* vol, int level) {
71  TObjArray* nodes = vol->GetNodes();
72  TGeoMedium* med = vol->GetMedium();
73  TGeoShape* shape = vol->GetShape();
74 
75  for (int i = 0; i < level; ++i)
76  std::cout << " ";
77  std::cout << "++Volume: " << vol->GetName() << " material:" << med->GetName() << " shape:" << shape->GetName() << std::endl;
78  TIter next(nodes);
79  TGeoNode *geoNode;
80  while ((geoNode = (TGeoNode *) next())) {
81  dumpNode(geoNode, level + 1);
82  }
83  }
84 
85  void dumpTopVolume(const Detector& description) {
86  dumpVolume(description.manager().GetTopVolume(), 0);
87  }
88 }
dd4hep::Detector::manager
virtual TGeoManager & manager() const =0
Access the geometry manager of this instance.
Objects.h
Detector.h
dd4hep::PlacedVolume
Handle class holding a placed volume (also called physical volume)
Definition: Volumes.h:164
dd4hep::dumpTopVolume
void dumpTopVolume(const Detector &description)
Definition: LCDD2Output.cpp:85
dd4hep::dumpNode
void dumpNode(TGeoNode *n, int level)
Definition: LCDD2Output.cpp:34
dd4hep::PlacedVolume::toString
std::string toString() const
String dump.
Definition: Volumes.cpp:540
IDDescriptor.h
Conversions.h
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::Detector
The main interface to the dd4hep detector description package.
Definition: Detector.h:90
dd4hep::dumpVolume
void dumpVolume(TGeoVolume *vol, int level)
Definition: LCDD2Output.cpp:70
Printout.h