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 efb4335 commit c4693b8Copy full SHA for c4693b8
EventFiltering/PWGLF/nucleiFilter.cxx
@@ -448,8 +448,8 @@ struct nucleiFilter {
448
}
449
450
for (const auto& v0 : v0s) {
451
- const auto& posTrack = tracks.rawIteratorAt(v0.posTrackId());
452
- const auto& negTrack = tracks.rawIteratorAt(v0.negTrackId());
+ const auto& posTrack = v0.posTrack_as<TrackCandidates>();
+ const auto& negTrack = v0.negTrack_as<TrackCandidates>();
453
if ((posTrack.itsNCls() < cfgCutNclusITS || posTrack.tpcNClsFound() < cfgCutNclusTPC) &&
454
(negTrack.itsNCls() < cfgCutNclusITS || negTrack.tpcNClsFound() < cfgCutNclusTPC)) {
455
continue;
0 commit comments