We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a147e5 commit ceb9654Copy full SHA for ceb9654
Common/Tools/PID/pidTPCModule.h
@@ -670,9 +670,7 @@ class pidTPCModule
670
671
//_______________________________________
672
// process tracksQA in case present
673
- std::vector<int64_t> indexTrack2TrackQA;
674
- indexTrack2TrackQA.clear();
675
- indexTrack2TrackQA.resize(outTable_size, -1);
+ std::vector<int64_t> indexTrack2TrackQA(outTable_size, -1);
676
if constexpr (soa::is_table<TTracksQA>) {
677
for (const auto& trackQA : tracksQA) {
678
indexTrack2TrackQA[trackQA.trackId()] = trackQA.globalIndex();
0 commit comments