Skip to content
Snippets Groups Projects
Commit 3700e885 authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

CaloTrackingGeometry: Thread-safety cleanup.

Remove unneeded thread-safety annotations.
parent 69e22d13
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-2020 CERN for the benefit of the ATLAS collaboration
*/
// ***************************************************************************
......@@ -176,13 +176,13 @@ private:
//IMessageSvc* m_msgSvc;
};
inline std::vector<std::pair<const Trk::Surface*,const Trk::Surface*> > CaloSurfaceBuilder::entrySurfaces ATLAS_THREAD_SAFE() const
inline std::vector<std::pair<const Trk::Surface*,const Trk::Surface*> > CaloSurfaceBuilder::entrySurfaces() const
{
std::call_once( m_fillOnce, [this](){fill_tg_surfaces();} );
return m_layerEntries;
}
inline std::vector<std::pair<const Trk::Surface*,const Trk::Surface*> > CaloSurfaceBuilder::exitSurfaces ATLAS_THREAD_SAFE() const
inline std::vector<std::pair<const Trk::Surface*,const Trk::Surface*> > CaloSurfaceBuilder::exitSurfaces() const
{
std::call_once( m_fillOnce, [this](){fill_tg_surfaces();} );
return m_layerExits;
......
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