20 #include <TGeoManager.h>
21 #include <TGeoCompositeShape.h>
22 #include <TGeoBoolNode.h>
31 void collectSolid(detail::GeoHandler::GeometryInfo& geo,
32 const std::string& name,
33 const std::string& node,
37 if ( 0 == ::strncmp(shape->GetName(),
"TGeo", 4) ) {
38 shape->SetName(name.c_str());
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());
46 if(geo.solid_set.emplace(shape).second) {
47 geo.solids.push_back(shape);
49 geo.trafos.emplace_back(node, matrix);
55 m_data =
new std::map<int, std::vector<const TGeoNode*> >();
56 m_set_data =
new std::map<int, std::set<const TGeoNode*> >();
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)
80 std::map<int, std::vector<const TGeoNode*> >* d = m_data;
94 bool old = m_propagateRegions;
95 m_propagateRegions = value;
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();
121 if (
info.volumeSet.find(vol) ==
info.volumeSet.end() ) {
122 info.volumeSet.emplace(vol);
123 info.volumes.emplace_back(vol);
126 info.materials.emplace(mat);
134 info.vis.emplace(vis);
139 collectSolid(
info,
v->GetName(), n->GetName(),
v->GetShape(), n->GetMatrix());
147 const TGeoNode* current,
150 TGeoVolume* vol = current->GetVolume();
151 TObjArray* nodes = vol->GetNodes();
156 if ( m_propagateRegions ) {
168 if ( (*m_set_data)[level].emplace(current).second ) {
169 (*m_data)[level].push_back(current);
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));