diff --git a/DDCore/include/DD4hep/GeoHandler.h b/DDCore/include/DD4hep/GeoHandler.h index 31d507f17023201b4b29d5078ac886c536ac020d..473989529465f6b4381da889da898acabf5bd36e 100644 --- a/DDCore/include/DD4hep/GeoHandler.h +++ b/DDCore/include/DD4hep/GeoHandler.h @@ -89,6 +89,7 @@ namespace dd4hep { protected: bool m_propagateRegions { false }; std::map<int, std::vector<const TGeoNode*> >* m_data { nullptr }; + std::map<int, std::set<const TGeoNode*> >* m_set_data { nullptr }; std::map<const TGeoNode*, std::vector<TGeoNode*> >* m_daughters { nullptr }; /// Internal helper to collect geometry information from traversal GeoHandler& i_collect(const TGeoNode* parent, @@ -109,6 +110,7 @@ namespace dd4hep { GeoHandler(); /// Initializing constructor GeoHandler(std::map<int, std::vector<const TGeoNode*> >* ptr, + std::map<int, std::set<const TGeoNode*> >* ptr_set, std::map<const TGeoNode*, std::vector<TGeoNode*> >* daus = nullptr); /// Default destructor virtual ~GeoHandler(); diff --git a/DDCore/src/GeoHandler.cpp b/DDCore/src/GeoHandler.cpp index ca443d062b3ccd505fee2cdf4d7752bae0fe2f2d..000705bf20edcfdbc1044ef4161f0f883b62e70e 100644 --- a/DDCore/src/GeoHandler.cpp +++ b/DDCore/src/GeoHandler.cpp @@ -55,12 +55,14 @@ namespace { /// Default constructor detail::GeoHandler::GeoHandler() { m_data = new std::map<int, std::vector<const TGeoNode*> >(); + m_set_data = new std::map<int, std::set<const TGeoNode*> >(); } /// Initializing constructor detail::GeoHandler::GeoHandler(std::map<int, std::vector<const TGeoNode*> >* ptr, - std::map<const TGeoNode*, std::vector<TGeoNode*> >* daus) - : m_data(ptr), m_daughters(daus) + std::map<int, std::set<const TGeoNode*> >* ptr_set, + std::map<const TGeoNode*, std::vector<TGeoNode*> >* daus) + : m_data(ptr), m_set_data(ptr_set), m_daughters(daus) { } @@ -68,12 +70,20 @@ detail::GeoHandler::GeoHandler(std::map<int, std::vector<const TGeoNode*> >* ptr detail::GeoHandler::~GeoHandler() { if (m_data) delete m_data; + if (m_set_data) + delete m_set_data; + m_data = nullptr; + m_set_data = nullptr; } std::map<int, std::vector<const TGeoNode*> >* detail::GeoHandler::release() { std::map<int, std::vector<const TGeoNode*> >* d = m_data; m_data = nullptr; + + delete m_set_data; + m_set_data = nullptr; + return d; } @@ -88,6 +98,7 @@ detail::GeoHandler& detail::GeoHandler::collect(DetElement element) { DetElement par = element.parent(); TGeoNode* par_node = par.isValid() ? par.placement().ptr() : nullptr; m_data->clear(); + m_set_data->clear(); return i_collect(par_node, element.placement().ptr(), 0, Region(), LimitSet()); } @@ -95,6 +106,7 @@ detail::GeoHandler& detail::GeoHandler::collect(DetElement element, GeometryInfo DetElement par = element.parent(); TGeoNode* par_node = par.isValid() ? par.placement().ptr() : nullptr; m_data->clear(); + m_set_data->clear(); i_collect(par_node, element.placement().ptr(), 0, Region(), LimitSet()); for ( auto i = m_data->rbegin(); i != m_data->rend(); ++i ) { const auto& mapped = (*i).second; @@ -150,8 +162,7 @@ detail::GeoHandler& detail::GeoHandler::i_collect(const TGeoNode* /* parent */, } } /// Collect the hierarchy of placements - auto& vec = (*m_data)[level]; - if(std::find(vec.begin(), vec.end(), current) == vec.end()) { + if ( (*m_set_data)[level].emplace(current).second ) { (*m_data)[level].push_back(current); } int num = nodes ? nodes->GetEntriesFast() : 0; diff --git a/DDG4/src/Geant4Converter.cpp b/DDG4/src/Geant4Converter.cpp index 3b8a6d5e56fcf9a0175b59eeb4f614e9da16e65f..57531caf7b8e1cdaf7c17efd627111782d325b42 100644 --- a/DDG4/src/Geant4Converter.cpp +++ b/DDG4/src/Geant4Converter.cpp @@ -1668,6 +1668,7 @@ Geant4Converter& Geant4Converter::create(DetElement top) { World wrld = top.world(); m_data->clear(); + m_set_data->clear(); m_daughters = &daughters; geo.manager = &wrld.detectorDescription().manager(); this->collect(top, geo);