Skip to content

Commit

Permalink
fix: pdg: eGamma for << was incorrect (#2614)
Browse files Browse the repository at this point in the history
Previous ParticleHypothesis outputs couldn't display `eGamma` as
supposed to.
  • Loading branch information
AJPfleger authored Nov 3, 2023
1 parent 314529f commit 6e56a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/src/Definitions/ParticleData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ std::optional<std::string_view> Acts::pdgToShortAbsString(PdgParticle pdg) {
if (pdg == eTau) {
return "t";
}
if (pdg == eTau) {
if (pdg == eGamma) {
return "g";
}
if (pdg == ePionZero) {
Expand Down

0 comments on commit 6e56a98

Please sign in to comment.