DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
GeoHandler.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 include files
15 #include <DD4hep/Detector.h>
16 #include <DD4hep/GeoHandler.h>
18 
19 // ROOT includes
20 #include <TGeoManager.h>
21 #include <TGeoCompositeShape.h>
22 #include <TGeoBoolNode.h>
23 #include <TClass.h>
24 
25 // C/C++ include files
26 
27 using namespace dd4hep;
28 
29 namespace {
30 
31  void collectSolid(detail::GeoHandler::GeometryInfo& geo,
32  const std::string& name,
33  const std::string& node,
34  TGeoShape* shape,
35  TGeoMatrix* matrix)
36  {
37  if ( 0 == ::strncmp(shape->GetName(), "TGeo", 4) ) {
38  shape->SetName(name.c_str());
39  }
40  if ( shape->IsA() == TGeoCompositeShape::Class() ) {
41  const TGeoCompositeShape* s = (const TGeoCompositeShape*) shape;
42  const TGeoBoolNode* boolean = s->GetBoolNode();
43  collectSolid(geo, name + "_left", name + "_left", boolean->GetLeftShape(), boolean->GetLeftMatrix());
44  collectSolid(geo, name + "_right", name + "_right", boolean->GetRightShape(), boolean->GetRightMatrix());
45  }
46  if(geo.solid_set.emplace(shape).second) {
47  geo.solids.push_back(shape);
48  }
49  geo.trafos.emplace_back(node, matrix);
50  }
51 }
52 
55  m_data = new std::map<int, std::vector<const TGeoNode*> >();
56  m_set_data = new std::map<int, std::set<const TGeoNode*> >();
57 }
58 
60 detail::GeoHandler::GeoHandler(std::map<int, std::vector<const TGeoNode*> >* ptr,
61  std::map<int, std::set<const TGeoNode*> >* ptr_set,
62  std::map<const TGeoNode*, std::vector<TGeoNode*> >* daus)
63  : m_data(ptr), m_set_data(ptr_set), m_daughters(daus)
64 {
65 }
66 
69  if (m_data)
70  delete m_data;
71  if (m_set_data)
72  delete m_set_data;
73 
74  m_data = nullptr;
75  m_set_data = nullptr;
76 }
77 
78 std::map<int, std::vector<const TGeoNode*> >* detail::GeoHandler::release() {
80  std::map<int, std::vector<const TGeoNode*> >* d = m_data;
81  m_data = nullptr;
82 
86  delete m_set_data;
87  m_set_data = nullptr;
88 
89  return d;
90 }
91 
94  bool old = m_propagateRegions;
95  m_propagateRegions = value;
96  return old;
97 }
98 
100  DetElement par = element.parent();
101  TGeoNode* par_node = par.isValid() ? par.placement().ptr() : nullptr;
102  m_data->clear();
103  m_set_data->clear();
104  return i_collect(par_node, element.placement().ptr(), 0, Region(), LimitSet());
105 }
106 
108  DetElement par = element.parent();
109  TGeoNode* par_node = par.isValid() ? par.placement().ptr() : nullptr;
110  m_data->clear();
111  m_set_data->clear();
112  i_collect(par_node, element.placement().ptr(), 0, Region(), LimitSet());
113  for ( auto i = m_data->rbegin(); i != m_data->rend(); ++i ) {
114  const auto& mapped = (*i).second;
115  for ( const TGeoNode* n : mapped ) {
116  TGeoVolume* v = n->GetVolume();
117  if ( v ) {
118  Material mat(v->GetMedium());
119  Volume vol(v);
120  // Note : assemblies and the world do not have a real volume nor a material
121  if ( info.volumeSet.find(vol) == info.volumeSet.end() ) {
122  info.volumeSet.emplace(vol);
123  info.volumes.emplace_back(vol);
124  }
125  if ( mat.isValid() )
126  info.materials.emplace(mat);
127  if (dynamic_cast<Volume::Object*>(v)) {
128  VisAttr vis = vol.visAttributes();
129  //Region reg = vol.region();
130  //LimitSet lim = vol.limitSet();
131  //SensitiveDetector det = vol.sensitiveDetector();
132 
133  if (vis.isValid())
134  info.vis.emplace(vis);
135  //if ( lim.isValid() ) info.limits[lim.ptr()].emplace(v);
136  //if ( reg.isValid() ) info.regions[reg.ptr()].emplace(v);
137  //if ( det.isValid() ) info.sensitives[det.ptr()].emplace(v);
138  }
139  collectSolid(info, v->GetName(), n->GetName(), v->GetShape(), n->GetMatrix());
140  }
141  }
142  }
143  return *this;
144 }
145 
146 detail::GeoHandler& detail::GeoHandler::i_collect(const TGeoNode* /* parent */,
147  const TGeoNode* current,
148  int level, Region rg, LimitSet ls)
149 {
150  TGeoVolume* vol = current->GetVolume();
151  TObjArray* nodes = vol->GetNodes();
152  Volume volume = vol;
153  Region region = volume.region();
154  LimitSet limits = volume.limitSet();
155 
156  if ( m_propagateRegions ) {
157  if ( !region.isValid() && rg.isValid() ) {
158  region = rg;
159  volume.setRegion(region);
160  }
161  if ( !limits.isValid() && ls.isValid() ) {
162  limits = ls;
163  volume.setLimitSet(limits);
164  }
165  }
168  if ( (*m_set_data)[level].emplace(current).second ) {
169  (*m_data)[level].push_back(current);
170  }
171  int num = nodes ? nodes->GetEntriesFast() : 0;
172  for (int i = 0; i < num; ++i)
173  i_collect(current, (TGeoNode*)nodes->At(i), level + 1, region, limits);
175  if ( m_daughters && m_daughters->find(current) == m_daughters->end() ) {
176  auto [idau,success] = m_daughters->emplace(current, std::vector<TGeoNode*>());
177  for (int i = 0; i < num; ++i)
178  idau->second.push_back((TGeoNode*)nodes->At(i));
179  }
180  return *this;
181 }
182 
185  m_data = GeoHandler().collect(e).release();
186 }
187 
190  GeoHandler h;
191  h.setPropagateRegions(propagate);
192  m_data = h.collect(e).release();
193 }
194 
197  delete m_data;
198  m_data = nullptr;
199 }
200 
203  return *this;
204 }
205 
dd4hep::Volume::setLimitSet
const Volume & setLimitSet(const Detector &description, const std::string &name) const
Set the limits to the volume. Note: If the name string is empty, the action is ignored.
Definition: Volumes.cpp:1290
dd4hep::VolumeExtension
Implementation class extending the ROOT volume (TGeoVolume)
Definition: Volumes.h:301
v
View * v
Definition: MultiView.cpp:28
dd4hep::DetElement::parent
DetElement parent() const
Access to the detector elements's parent.
Definition: DetElement.cpp:239
Detector.h
dd4hep::info
std::size_t info(const std::string &src, const std::string &msg)
Definition: RootDictionary.h:65
dd4hep::detail::GeoHandler::i_collect
GeoHandler & i_collect(const TGeoNode *parent, const TGeoNode *node, int level, Region rg, LimitSet ls)
Internal helper to collect geometry information from traversal.
Definition: GeoHandler.cpp:146
dd4hep::VisAttr
Handle class describing visualization attributes.
Definition: Objects.h:323
dd4hep::detail::GeoHandlerTypes::GeometryInfo
Data container to store information obtained during the geometry scan.
Definition: GeoHandler.h:60
dd4hep::DetElement::placement
PlacedVolume placement() const
Access to the physical volume of this detector element.
Definition: DetElement.cpp:321
dd4hep::Handle::isValid
bool isValid() const
Check the validity of the object held by the handle.
Definition: Handle.h:126
dd4hep::Volume::setRegion
const Volume & setRegion(const Detector &description, const std::string &name) const
Set the regional attributes to the volume. Note: If the name string is empty, the action is ignored.
Definition: Volumes.cpp:1271
dd4hep::detail::GeoScan
Geometry scanner (handle object)
Definition: GeoHandler.h:137
dd4hep::Material
Handle class describing a material.
Definition: Objects.h:271
dd4hep::detail::GeoHandler::m_set_data
std::map< int, std::set< const TGeoNode * > > * m_set_data
redundant container with std::set (for lookup purpose)
Definition: GeoHandler.h:95
dd4hep::DetElement
Handle class describing a detector element.
Definition: DetElement.h:187
dd4hep::Volume
Handle class holding a placed volume (also called physical volume)
Definition: Volumes.h:371
dd4hep::detail::GeoHandler
The base class for all dd4hep geometry crawlers.
Definition: GeoHandler.h:87
dd4hep::detail::GeoScan::GeoScan
GeoScan(DetElement e)
Initializing constructor.
Definition: GeoHandler.cpp:184
dd4hep::detail::GeoHandler::~GeoHandler
virtual ~GeoHandler()
Default destructor.
Definition: GeoHandler.cpp:68
dd4hep::LimitSet
Handle class describing a set of limits as they are used for simulation.
Definition: Objects.h:424
dd4hep::Volume::limitSet
LimitSet limitSet() const
Access to the limit set.
Definition: Volumes.cpp:1304
dd4hep::detail::GeoHandler::release
std::map< int, std::vector< const TGeoNode * > > * release()
Access to collected node list.
Definition: GeoHandler.cpp:78
dd4hep::Volume::region
Region region() const
Access to the handle to the region structure.
Definition: Volumes.cpp:1285
dd4hep::Region
Handle class describing a region as used in simulation.
Definition: Objects.h:461
dd4hep::detail::GeoHandler::GeoHandler
GeoHandler()
Default constructor.
Definition: GeoHandler.cpp:54
dd4hep::detail::GeoHandler::m_data
std::map< int, std::vector< const TGeoNode * > > * m_data
actual container with std::vector (preserves order)
Definition: GeoHandler.h:93
dd4hep::detail::GeoScan::operator()
virtual GeoScan & operator()()
Work callback.
Definition: GeoHandler.cpp:202
dd4hep::detail::GeoHandler::setPropagateRegions
bool setPropagateRegions(bool value)
Propagate regions. Returns the previous value.
Definition: GeoHandler.cpp:93
dd4hep::Handle::ptr
T * ptr() const
Access to the held object.
Definition: Handle.h:151
ObjectsInterna.h
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::detail::GeoScan::~GeoScan
virtual ~GeoScan()
Default destructor.
Definition: GeoHandler.cpp:196
dd4hep::Volume::visAttributes
VisAttr visAttributes() const
Access the visualisation attributes.
Definition: Volumes.cpp:1239
dd4hep::detail::GeoHandler::collect
GeoHandler & collect(DetElement top)
Collect geometry information from traversal.
Definition: GeoHandler.cpp:99
GeoHandler.h