Commit 30e8cb575449e5c7076dc37e0f2c961c09bf574c
1 parent
50a84b56
housekeeping
Showing
1 changed file
with
0 additions
and
3 deletions
Show diff stats
DualTrackTagger/src/DualTrackTaggerModule.cc
... | ... | @@ -94,7 +94,6 @@ void DualTrackTaggerModule::loopTracks() |
94 | 94 | bool duplicates = compareTracks(p1, p2); |
95 | 95 | if (duplicates) { |
96 | 96 | tagDuplicate(p1 , p2); |
97 | - // TODO - remove duplicate tracks from vector to stop double counting and increase speed | |
98 | 97 | } // duplicats |
99 | 98 | } //p2 |
100 | 99 | } //p1 |
... | ... | @@ -141,10 +140,8 @@ void DualTrackTaggerModule::tagDuplicate(Particle* p1, Particle* p2) |
141 | 140 | double p2chi2 = chi2(p2); |
142 | 141 | |
143 | 142 | if (p1chi2 > p2chi2) { |
144 | - //tagWithExtraInfo(p1); | |
145 | 143 | p1 -> setExtraInfo("DualTrack",1); |
146 | 144 | } else { |
147 | - //tagWithExtraInfo(p2); | |
148 | 145 | p2 -> setExtraInfo("DualTrack",1); |
149 | 146 | } |
150 | 147 | } | ... | ... |