ATLAS Offline Software
Loading...
Searching...
No Matches
TrackSelectionProcessorTool.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
8#include "GaudiKernel/MsgStream.h"
9#include <map>
10
11//==================================================================================================
13 const std::string& n,
14 const IInterface* p )
15 :
16 AthAlgTool(t,n,p),
17 m_selectionTool("InDet::InDetAmbiTrackSelectionTool/InDetAmbiTrackSelectionTool")
18{
19 declareInterface<ITrackAmbiguityProcessorTool>(this);
20 declareProperty("DropDouble" , m_dropDouble = true);
21 declareProperty("SelectionTool" , m_selectionTool);
22 declareProperty("DisableSorting" , m_disableSorting = false);
23}
24//==================================================================================================
25
27//==================================================================================================
28
29StatusCode
31 StatusCode sc = AthAlgTool::initialize();
32 if (sc.isFailure()) {
33 ATH_MSG_FATAL( "AlgTool::initialise failed" );
34 return StatusCode::FAILURE;
35 }
36 ATH_CHECK( m_assoMapName.initialize(!m_assoMapName.key().empty()));
37 ATH_CHECK( m_assoTool.retrieve() );
38 ATH_CHECK( m_scoringTool.retrieve());
39 ATH_CHECK(m_selectionTool.retrieve());
40
43
44 if (m_disableSorting) ATH_MSG_DEBUG( "Internal sorting disabled, using external ordering!" );
45 return sc;
46}
47//==================================================================================================
48
49StatusCode
51 StatusCode sc = AlgTool::finalize();
52 return sc;
53}
54
55//==================================================================================================
56
59
60const TrackCollection*
62 Trk::PRDtoTrackMap *pPrdToTrackMap) const{
63 //TODO: make sure the ownership; delete origin tracks from map?
64 std::vector<const Track*> tracks;
65 tracks.reserve(tracksCol->size());
66 for(const auto *e: *tracksCol){
67 tracks.push_back(e);
68 }
69 ATH_MSG_DEBUG ("Processing "<<tracks.size()<<" tracks");
70 std::unique_ptr<Trk::PRDtoTrackMap> tmpPrdToTrackMap;
71 if (!pPrdToTrackMap) {
72 tmpPrdToTrackMap = m_assoTool->createPRDtoTrackMap();
73 if (!m_assoMapName.key().empty()) {
75 if (!inputPrdMap.isValid()) {
76 ATH_MSG_ERROR("Failed to retrieve prd to track map " << m_assoMapName.key() );
77 } else {
78 *tmpPrdToTrackMap = *inputPrdMap;
79 }
80 }
81 pPrdToTrackMap = tmpPrdToTrackMap.get();
82 }
83 TrackScoreMap trackScoreTrackMap;
84 //put tracks into maps etc
85 addNewTracks(trackScoreTrackMap,*pPrdToTrackMap, tracks);
86 // going to do simple algorithm for now:
87 // - take track with highest score
88 // - remove shared hits from all other tracks
89 // - take next highest scoring tracks, and repeat
90 std::unique_ptr<ConstDataVector<TrackCollection> > result(std::make_unique<ConstDataVector<TrackCollection> >(SG::VIEW_ELEMENTS)); //TODO, old or new
91 solveTracks(trackScoreTrackMap, *pPrdToTrackMap, *result);
92 if (msgLvl(MSG::DEBUG)) dumpTracks(*result->asDataVector());
93 return result.release()->asDataVector();
94}
95
96
97//==================================================================================================
98void
100 Trk::PRDtoTrackMap &prdToTrackMap,
101 const std::vector<const Track*> &tracks) const{
102 ATH_MSG_DEBUG ("Number of tracks at Input: "<<tracks.size());
103 PrdSignatureSet prdSigSet;
104 TrackScore itrack=0;
105 for (const Track*a_track : tracks ) {
106 if(m_disableSorting) {
107 // add track to map using ordering provided by the collection
108 trackScoreTrackMap.insert( std::make_pair(itrack, TrackPtr(a_track)) );
109 itrack++;
110 continue;
111 }
112 bool reject = false;
113 TrackScore score = m_scoringTool->score( *a_track );
114 // veto tracks with score 0
115 if (score==0) {
116 ATH_MSG_DEBUG ("Track score is zero, reject it");
117 reject = true;
118 } else {
119 if (m_dropDouble) {
120 const std::vector<const Trk::PrepRawData*> & prds = m_assoTool->getPrdsOnTrack(prdToTrackMap, *a_track);
121 // unfortunately PrepRawDataSet is not a set !
122 PrdSignature prdSig;
123 prdSig.insert( prds.begin(),prds.end() );
124 // we try to insert it into the set, if we fail (pair.second), it then exits already
125 if ( !(prdSigSet.insert(prdSig)).second ) {
126 ATH_MSG_DEBUG ("Double track, reject it !");
127 reject = true;
128 } else {
129 ATH_MSG_DEBUG ("Insert new track in PrdSignatureSet");
130 }
131 }
132 }
133 if (!reject) {
134 // add track to map, map is sorted small to big ! set if fitted
135 ATH_MSG_VERBOSE ("Track ("<< a_track <<") has score "<<score);
136 trackScoreTrackMap.insert( std::make_pair(-score, TrackPtr(a_track) ) );
137 }
138 }
139 ATH_MSG_DEBUG ("Number of tracks in map:"<<trackScoreTrackMap.size());
140}
141
142void
144 Trk::PRDtoTrackMap &prdToTrackMap,
146{
147 using namespace std;
148
149 const EventContext& ctx = Gaudi::Hive::currentContext();
151 if (!m_clusterSplitProbContainerIn.key().empty()) {
152 splitProbContainerIn = SG::ReadHandle( m_clusterSplitProbContainerIn, ctx);
153 if (!splitProbContainerIn.isValid()) {
154 ATH_MSG_ERROR( "Failed to get input cluster split probability container " << m_clusterSplitProbContainerIn.key());
155 }
156 }
157 std::unique_ptr<Trk::ClusterSplitProbabilityContainer> splitProbContainerCleanup(!m_clusterSplitProbContainerIn.key().empty()
158 ? std::make_unique<ClusterSplitProbabilityContainer>(*splitProbContainerIn)
159 : std::make_unique<ClusterSplitProbabilityContainer>());
161 Trk::ClusterSplitProbabilityContainer *splitProbContainer;
162 if (!m_clusterSplitProbContainerOut.key().empty()) {
164 if (splitProbContainerHandle.record(std::move(splitProbContainerCleanup)).isFailure()) {
165 ATH_MSG_FATAL( "Failed to record output cluster split probability container " << m_clusterSplitProbContainerOut.key());
166 }
167 splitProbContainer=splitProbContainerHandle.ptr();
168 }
169 else {
170 splitProbContainer=splitProbContainerCleanup.get();
171 }
172
173 ATH_MSG_VERBOSE ("Starting to solve tracks");
174 // now loop as long as map is not empty
175 while ( !trackScoreTrackMap.empty() ) {
176 TrackScoreMap::iterator itnext = trackScoreTrackMap.begin();
177 TrackPtr atrack( std::move(itnext->second) );
178 TrackScore ascore( itnext->first);
179 trackScoreTrackMap.erase(itnext);
180 ATH_MSG_VERBOSE ("--- Trying next track "<<atrack.track()<<"\t with score "<<-ascore);
181 std::unique_ptr<Trk::Track> cleanedTrack;
182 const auto &[cleanedTrack_tmp, keepOriginal] = m_selectionTool->getCleanedOutTrack( atrack.track() , -(ascore), *splitProbContainer, prdToTrackMap, -1, -1);
183 cleanedTrack.reset(cleanedTrack_tmp);
184 if (keepOriginal ){
185 // track can be kept as identical to the input track
186 ATH_MSG_DEBUG ("Accepted track "<<atrack.track()<<"\t has score "<<-(ascore));
187 // add track to PRD_AssociationTool
188 StatusCode sc = m_assoTool->addPRDs(prdToTrackMap,*atrack);
189 if (sc.isFailure()) ATH_MSG_ERROR( "addPRDs() failed" );
190 // add to output list
191 result.push_back( atrack.track() );
192
193 } else if ( !cleanedTrack ) {
194 // track should be discarded
195 ATH_MSG_DEBUG ("Track "<< atrack.track() << " doesn't meet the cuts of the AmbiTrack Selection tool");
196 } else {
197 // delete cleaned track
198 cleanedTrack.reset();
199 // stripped down version cannot be handled discarding
200 ATH_MSG_DEBUG("Selection tool returned a new track, cannot handle memory management of new track, deleting it. Check you configuration ");
201 }
202 // don't forget to drop track from map
203 }
204 ATH_MSG_DEBUG ("Finished, number of track on output: "<<result.size());
205}
206
207//==================================================================================================
208
209void
211 ATH_MSG_VERBOSE ("Dumping tracks in collection");
212 int num=0;
213 TrackScore totalScore = 0;
215 TrackCollection::const_iterator itEnd = tracks.end();
216 for (; it != itEnd ; ++it){
217 // score track:
218 const TrackScore score = m_scoringTool->score( **it );
219 ATH_MSG_VERBOSE (num++<<"\tTrack :"<<*it<<"\tScore: "<<score);
220 totalScore+=score;
221 }
222 ATH_MSG_DEBUG ("Total event score : "<<totalScore);
223}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
DataVector adapter that acts like it holds const pointers.
static Double_t sc
DataVector< Trk::Track > TrackCollection
This typedef represents a collection of Trk::Track objects.
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
bool msgLvl(const MSG::Level lvl) const
DataVector adapter that acts like it holds const pointers.
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
pointer_type ptr()
Dereference the pointer.
Container to associate Cluster with cluster splitting probabilities.
const Trk::Track * track() const
Definition TrackPtr.h:54
std::set< const PrepRawData * > PrdSignature
bool m_disableSorting
option to disable sorting based on track score and use the ordering provided externally
SG::WriteHandleKey< Trk::ClusterSplitProbabilityContainer > m_clusterSplitProbContainerOut
void addNewTracks(TrackScoreMap &trackScoreTrackMap, Trk::PRDtoTrackMap &prdToTrackMap, const std::vector< const Track * > &tracks) const
Add passed TrackCollection, and Trk::PrepRawData from tracks to caches.
SG::ReadHandleKey< Trk::ClusterSplitProbabilityContainer > m_clusterSplitProbContainerIn
std::multimap< TrackScore, TrackPtr > TrackScoreMap
void dumpTracks(const TrackCollection &tracks) const
print out tracks and their scores for debugging
ToolHandle< Trk::IPRDtoTrackMapTool > m_assoTool
SG::ReadHandleKey< Trk::PRDtoTrackMap > m_assoMapName
key for the PRDtoTrackMap to filled by the ambiguity score processor.
virtual const TrackCollection * process(const TrackCollection *tracksCol, Trk::PRDtoTrackMap *prdToTrackMap) const override
Returns a processed TrackCollection from the passed 'tracks' WITHOUT copying or refitting the input t...
TrackSelectionProcessorTool(const std::string &, const std::string &, const IInterface *)
void solveTracks(TrackScoreMap &trackScoreTrackMap, Trk::PRDtoTrackMap &prdToTrackMap, ConstDataVector< TrackCollection > &final_tracks) const
ToolHandle< IAmbiTrackSelectionTool > m_selectionTool
selection tool - here the decision which hits remain on a track and which are removed are made
ToolHandle< ITrackScoringTool > m_scoringTool
Scoring tool This tool is used to 'score' the tracks, i.e.
bool m_dropDouble
by default drop double tracks before refit
@ VIEW_ELEMENTS
this data object is a view, it does not own its elmts
float TrackScore
Definition TrackScore.h:10
STL namespace.