Skip to content

Commit f6864dd

Browse files
authored
fix wrong column name
1 parent d5e1cc9 commit f6864dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/TableProducer/Nuspex/ebyeMaker.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ struct EbyeMaker {
555555
for (const auto& track : tracks) {
556556
if (track.trackType() == o2::aod::track::TrackTypeEnum::Run2Tracklet && std::abs(track.eta()) < trklEtaMax && !(doprocessRun3 || doprocessMcRun3)) { // tracklet
557557
nTrackletsColl++;
558-
} else if (std::abs(track.eta()) < trklEtaMax && track.itsNcls() > 3 && (doprocessRun3 || doprocessMcRun3)) { // ITS only + global tracks
558+
} else if (std::abs(track.eta()) < trklEtaMax && track.itsNCls() > 3 && (doprocessRun3 || doprocessMcRun3)) { // ITS only + global tracks
559559
nTrackletsColl++;
560560
}
561561
if (!selectTrack(track)) {

0 commit comments

Comments
 (0)