Skip to content
Snippets Groups Projects

Prefer ADL lookup of updateHandleLocation over explicit Gaudi::Functional::updateHandleLocation

Merged Gerhard Raven requested to merge prefer-adl-lookup-of-updateHandleLocation into master
42 files
+ 75
95
Compare changes
  • Side-by-side
  • Inline
Files
42
@@ -89,7 +89,7 @@ StatusCode CaloAlignmentNtp::initialize() {
// set vertex location
m_vertLoc = inputLocation(); // <-- Careful with the index
if ( m_vertLoc == "" ) m_vertLoc = m_usePV3D ? LHCb::RecVertexLocation::Velo3D : LHCb::RecVertexLocation::Primary;
if ( m_vertLoc.empty() ) m_vertLoc = m_usePV3D ? LHCb::RecVertexLocation::Velo3D : LHCb::RecVertexLocation::Primary;
updateHandleLocation( *this, "VertexLoc", m_vertLoc );
return StatusCode::SUCCESS;
Loading