Skip to content

Commit 329dc72

Browse files
authored
[ALICE3] Update mass getting in qaSignleParticle (#16567)
1 parent ea7a4b8 commit 329dc72

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ALICE3/Tasks/alice3-qa-singleparticle.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
/// \brief Task to monitor the single particle QA, at the particle and track level, showing the tracked and the origin of particles
1616
///
1717

18+
#include <CommonConstants/PhysicsConstants.h>
1819
#include <Framework/ASoA.h>
1920
#include <Framework/AnalysisDataModel.h>
2021
#include <Framework/AnalysisHelpers.h>
@@ -88,10 +89,10 @@ struct Alice3SingleParticle {
8889
pdg->AddParticle("triton", "triton", 2.8089218, kTRUE, 0.0, 3, "Nucleus", 1000010030);
8990
pdg->AddAntiParticle("anti-triton", -1000010030);
9091

91-
pdg->AddParticle("helium3", "helium3", 2.80839160743, kTRUE, 0.0, 6, "Nucleus", 1000020030);
92+
pdg->AddParticle("helium3", "helium3", o2::constants::physics::MassHelium3, kTRUE, 0.0, 6, "Nucleus", 1000020030);
9293
pdg->AddAntiParticle("anti-helium3", -1000020030);
9394

94-
pdg->AddParticle("helium4", "helium4", 2.80839160743, kTRUE, 0.0, 6, "Nucleus", 1000020040);
95+
pdg->AddParticle("helium4", "helium4", o2::constants::physics::MassAlpha, kTRUE, 0.0, 6, "Nucleus", 1000020040);
9596
pdg->AddAntiParticle("anti-helium4", -1000020040);
9697

9798
const TString tit = Form("%i", PDG.value);

0 commit comments

Comments
 (0)