Skip to content
Snippets Groups Projects
Commit c5900847 authored by Johannes Junggeburth's avatar Johannes Junggeburth :dog2: Committed by Melissa Yexley
Browse files

Use 'set' instead of 'vector', so we can use 'count' to search for TreeTops

parent 6a7da474
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,12 @@ StatusCode DumpGeo::initialize()
if ( !(m_user_filterDetManagersList.empty()) ) {
// Get list of managers
ATH_MSG_INFO("List of GeoModel Detector Managers: ");
std::vector<std::string> managersList = theExpt->getListOfManagers();
std::set<std::string> managersList{};
{
std::vector<std::string> blub = theExpt->getListOfManagers();
managerList.insert(blub.begin(), blub.end());
}
// safety check:
// check that all DetManagers requested by the user are in the list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment