Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Common/Core/PID/PIDResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ DECLARE_SOA_DYNAMIC_COLUMN(TOFNSigma, tofNSigma, //! Nsigma separation with
return He;
case o2::track::PID::Alpha:
return Al;
default:
return -999.f;
}
});
} // namespace pidtof
Expand Down Expand Up @@ -189,6 +191,8 @@ DECLARE_SOA_DYNAMIC_COLUMN(TOFNSigma, tofNSigma, //! Nsigma separation wit
return bin_width * static_cast<float>(He);
case o2::track::PID::Alpha:
return bin_width * static_cast<float>(Al);
default:
return -999.f;
}
});

Expand Down Expand Up @@ -314,6 +318,8 @@ DECLARE_SOA_DYNAMIC_COLUMN(TPCNSigma, tpcNSigma, //! Nsigma separation with
return He;
case o2::track::PID::Alpha:
return Al;
default:
return -999.f;
}
});

Expand Down Expand Up @@ -372,6 +378,8 @@ DECLARE_SOA_DYNAMIC_COLUMN(TPCNSigma, tpcNSigma, //! Nsigma separation wit
return bin_width * static_cast<float>(He);
case o2::track::PID::Alpha:
return bin_width * static_cast<float>(Al);
default:
return -999.f;
}
});
} // namespace pidtpc_tiny
Expand Down