Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion PWGHF/D2H/Tasks/taskD0.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ struct HfTaskD0 {
auto indexMother = RecoDecay::getMother(mcParticles, candidate.template prong0_as<aod::TracksWMc>().template mcParticle_as<soa::Join<aod::McParticles, aod::HfCand2ProngMcGen>>(), o2::constants::physics::Pdg::kD0, true);
auto particleMother = mcParticles.rawIteratorAt(indexMother);
auto ptGen = particleMother.pt(); // gen. level pT
auto yGen = RecoDecay::y(std::array{particleMother.px(), particleMother.py(), particleMother.pz()}, o2::constants::physics::MassD0); // gen. level y
auto yGen = RecoDecay::y(std::array{particleMother.px(), particleMother.py(), particleMother.pz()}, o2::constants::physics::MassD0); // gen. level y
registry.fill(HIST("hPtGenSig"), ptGen); // gen. level pT
auto ptRec = candidate.pt();
auto yRec = hfHelper.yD0(candidate);
Expand Down
4 changes: 2 additions & 2 deletions PWGHF/TableProducer/candidateCreatorToXiPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ struct HfCandidateCreatorToXiPiMc {
int8_t debugGenXi = 0;
int8_t debugGenLambda = 0;

int pdgCodeOmegac0 = Pdg::kOmegaC0; // 4332
int pdgCodeXic0 = Pdg::kXiCZero; // 4132
int pdgCodeOmegac0 = Pdg::kOmegaC0; // 4332
int pdgCodeXic0 = Pdg::kXiCZero; // 4132
int pdgCodeXiMinus = kXiMinus; // 3312
int pdgCodeLambda = kLambda0; // 3122
int pdgCodePiPlus = kPiPlus; // 211
Expand Down