Skip to content
Snippets Groups Projects
Commit 10636373 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'const.TrkDetDescrUnitTests-20190510' into 'master'

TrkDetDescrUnitTests: const fix

See merge request atlas/athena!23339
parents 58adf520 3e52cff5
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/ */
////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////
...@@ -86,12 +86,10 @@ StatusCode Trk::TrackingGeometryTest::runTest() ...@@ -86,12 +86,10 @@ StatusCode Trk::TrackingGeometryTest::runTest()
// only run if it didn't already run before // only run if it didn't already run before
if (!m_executed && m_trackingGeometry){ if (!m_executed && m_trackingGeometry){
// push the geometry through the different processors // push the geometry through the different processors
ToolHandleArray<Trk::IGeometryProcessor>::const_iterator tgpIter = m_trackingGeometryProcessors.begin(); for (ToolHandle<Trk::IGeometryProcessor> proc : m_trackingGeometryProcessors) {
ToolHandleArray<Trk::IGeometryProcessor>::const_iterator tgpIterE = m_trackingGeometryProcessors.end(); ATH_MSG_INFO("Parse geometry with processor " << proc->name() );
for ( ; tgpIter != tgpIterE; ++tgpIter ){ if ((proc->process(*m_trackingGeometry)).isFailure()){
ATH_MSG_INFO("Parse geometry with processor " << (*tgpIter).name() ); ATH_MSG_FATAL("Could not process the TrackingGeometry with '" << proc->name() <<"'. Aborting test.");
if (((*tgpIter)->process(*m_trackingGeometry)).isFailure()){
ATH_MSG_FATAL("Could not process the TrackingGeometry with '" << (*tgpIter).name() <<"'. Aborting test.");
return StatusCode::FAILURE; return StatusCode::FAILURE;
} }
} }
......
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