File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
PWGCF/TwoParticleCorrelations/Tasks Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -989,13 +989,12 @@ struct LambdaTableProducer {
989989 continue ;
990990 }
991991 }
992- if (track.pt () <= cTrackMinPt && std::abs (track.eta ()) >= cTrackEtaCut) { // Kinematic selection
993- continue ;
994- }
995- if (track.hasITS ()) { // ITS only track
992+ // ITS only track
993+ if (track.pt () > cTrackMinPt && std::abs (track.eta ()) < cTrackEtaCut && track.hasITS () && track.isQualityTrackITS ()) {
996994 histos.fill (HIST (" Tracks/h2f_itstrack_centpt" ), cent, track.pt ());
997995 }
998- if (track.hasITS () && track.hasTPC ()) { // ITS + TPC track
996+ // ITS+TPC track
997+ if (track.pt () > cTrackMinPt && std::abs (track.eta ()) < cTrackEtaCut && track.hasITS () && track.hasTPC () && track.isQualityTrackITS () && track.isQualityTrackTPC ()) {
999998 histos.fill (HIST (" Tracks/h2f_itstpctrack_centpt" ), cent, track.pt ());
1000999 }
10011000 }
You can’t perform that action at this time.
0 commit comments