From 6f45e6336340b57790a8f3cc8c279280447475c1 Mon Sep 17 00:00:00 2001
From: Frank Gaede <frank.gaede@desy.de>
Date: Thu, 28 May 2015 12:36:21 +0000
Subject: [PATCH]  return empty vector instead of exception in
 LCDDImp::detectors(const string& type) if nothing found for type

---
 DDCore/src/LCDDImp.cpp | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/DDCore/src/LCDDImp.cpp b/DDCore/src/LCDDImp.cpp
index 7a0382e40..9e0015c9d 100644
--- a/DDCore/src/LCDDImp.cpp
+++ b/DDCore/src/LCDDImp.cpp
@@ -279,9 +279,12 @@ vector<string> LCDDImp::detectorTypes() const  {
 /// Access a set of subdetectors according to the sensitive type.
 const vector<DetElement>& LCDDImp::detectors(const string& type)  {
   if ( m_manager->IsClosed() ) {
-    DetectorTypeMap::const_iterator i=m_detectorTypes.find(type);
-    if ( i != m_detectorTypes.end() ) return (*i).second;
-    throw runtime_error("detectors("+type+"): Detectors of this type do not exist in the current setup!");
+    // DetectorTypeMap::const_iterator i=m_detectorTypes.find(type);
+    // if ( i != m_detectorTypes.end() ) return (*i).second;
+    // throw runtime_error("detectors("+type+"): Detectors of this type do not exist in the current setup!");
+
+    // return empty vector instead of exception
+    return m_detectorTypes[ type ] ;
   }
   throw runtime_error("detectors("+type+"): Detectors can only selected by type once the geometry is closed!");
 }
-- 
GitLab