From 0284b3163f9bf2797f2a17954d6cea0df6bac8b9 Mon Sep 17 00:00:00 2001 From: Sanghyun Ko <37464245+SanghyunKo@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:38:33 +0900 Subject: [PATCH] Adopt a suggestion for improving comments Co-authored-by: Andre Sailer --- DDCore/src/GeoHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDCore/src/GeoHandler.cpp b/DDCore/src/GeoHandler.cpp index 6851009aa..07f7a4521 100644 --- a/DDCore/src/GeoHandler.cpp +++ b/DDCore/src/GeoHandler.cpp @@ -166,7 +166,7 @@ detail::GeoHandler& detail::GeoHandler::i_collect(const TGeoNode* /* parent */, } } /// Collect the hierarchy of placements - /// perform lookup using std::set::emplace (faster than std::find for the large number of geometries) + /// perform lookup using std::set::emplace (faster than std::find for very large number of volumes) if ( (*m_set_data)[level].emplace(current).second ) { (*m_data)[level].push_back(current); }