Skip to content

Commit a66bd84

Browse files
Fix for wrong check for availability of PID info (#308)
1 parent ac7e7c5 commit a66bd84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGCF/TableProducer/dptdptfilter.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ MatchRecoGenSpecies DptDptFilter::trackIdentification(TrackObject const& track)
640640
if (recoIdMethod == 0) {
641641
sp = kDptDptCharged;
642642
} else if (recoIdMethod == 1) {
643-
if constexpr (framework::has_type_v<aod::pidTPCPi, typename TrackObject::all_columns>) {
643+
if constexpr (framework::has_type_v<aod::pidtpc_tiny::TPCNSigmaStorePi, typename TrackObject::all_columns>) {
644644
sp = IdentifyTrack(track);
645645
} else {
646646
LOGF(fatal, "Track identification required but PID information not present");

0 commit comments

Comments
 (0)