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

Merge branch 'const.TrkTrackCollectionMerger-20190513' into 'master'

TrkTrackCollectionMerger: ToolHandle constness fix.

See merge request atlas/athena!23387
parents ae862668 797b1086
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
*/ */
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
...@@ -65,7 +65,7 @@ namespace Trk { ...@@ -65,7 +65,7 @@ namespace Trk {
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
/** @brief A routine that merges the track collections. */ /** @brief A routine that merges the track collections. */
StatusCode mergeTrack(const TrackCollection* trackCol, TrackCollection* outputCol) const; StatusCode mergeTrack(const TrackCollection* trackCol, TrackCollection* outputCol);
MsgStream& dumptools(MsgStream& out) const; MsgStream& dumptools(MsgStream& out) const;
MsgStream& dumpevent(MsgStream& out) const; MsgStream& dumpevent(MsgStream& out) const;
......
...@@ -199,7 +199,7 @@ std::ostream& Trk::operator << ...@@ -199,7 +199,7 @@ std::ostream& Trk::operator <<
// Merge track collections and remove duplicates // Merge track collections and remove duplicates
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
StatusCode Trk::TrackCollectionMerger::mergeTrack(const TrackCollection* trackCol, TrackCollection* outputCol) const StatusCode Trk::TrackCollectionMerger::mergeTrack(const TrackCollection* trackCol, TrackCollection* outputCol)
{ {
// loop over forward track, accept them and add them imto association tool // loop over forward track, accept them and add them imto association tool
if(trackCol && trackCol->size()) { if(trackCol && trackCol->size()) {
......
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