Skip to content

Commit 6e27d71

Browse files
authored
Fix PID response for Z=2 nuclei
1 parent a6fac7d commit 6e27d71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Common/DataModel/PIDResponseITS.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ struct ITSResponse {
9393
template <o2::track::PID::ID id, typename T>
9494
static float nSigmaITS(const T& track)
9595
{
96+
unsigned int charge = (id == o2::track::PID::Helium3 || id == o2::track::PID::Alpha) ? 2 : 1;
9697
return nSigmaITS<id>(track.itsClusterSizes(), track.p(), track.eta());
9798
}
9899

0 commit comments

Comments
 (0)