Skip to content

Commit 7d8c242

Browse files
authored
[PWGLF/Utils] mcParticle: Add anti-particles for K*0, K*+-, Xi and Lambda (#16188)
1 parent d41332d commit 7d8c242

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

PWGLF/Utils/mcParticle.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,14 +337,22 @@ class PIDExtended
337337
return XiC0;
338338
case o2::constants::physics::Pdg::kK0Star892:
339339
return Kstar;
340-
case 323:
340+
case -o2::constants::physics::Pdg::kK0Star892:
341+
return Kstar;
342+
case o2::constants::physics::Pdg::kKPlusStar892:
343+
return KstarPM;
344+
case -o2::constants::physics::Pdg::kKPlusStar892:
341345
return KstarPM;
342346
case 310:
343347
return Kshort;
344348
case 3324:
345349
return Xi1530;
350+
case -3324:
351+
return Xi1530;
346352
case 3124:
347353
return Lambda1520;
354+
case -3124:
355+
return Lambda1520;
348356
default:
349357
LOG(debug) << "Cannot identify particle with PDG code " << particle.pdgCode();
350358
break;

0 commit comments

Comments
 (0)