You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if it's a D0 particle, search for D0bar and evaluate correlations
418
-
if (particle1.pdgCode() != o2::constants::physics::Pdg::kD0) { // just checking the particle PDG, not the decay channel (differently from Reco: you have a BR factor btw such levels!)
419
+
if (particle1.pdgCode() != Pdg::kD0) { // just checking the particle PDG, not the decay channel (differently from Reco: you have a BR factor btw such levels!)
419
420
continue;
420
421
}
421
422
registry.fill(HIST("hCountD0triggersMCGen"), 0, particle1.pt()); // to count trigger D0 (for normalisation)
422
423
for (constauto& particle2 : mcParticles) {
423
-
if (particle2.pdgCode() != o2::constants::physics::Pdg::kD0Bar) { // check that inner particle is D0bar
424
+
if (particle2.pdgCode() != Pdg::kD0Bar) { // check that inner particle is D0bar
// if it's a D0 particle, search for D0bar and evaluate correlations
419
-
if (particle1.pdgCode() != o2::constants::physics::Pdg::kD0) { // just checking the particle PDG, not the decay channel (differently from Reco: you have a BR factor btw such levels!)
420
+
if (particle1.pdgCode() != Pdg::kD0) { // just checking the particle PDG, not the decay channel (differently from Reco: you have a BR factor btw such levels!)
420
421
continue;
421
422
}
422
423
registry.fill(HIST("hCountD0triggersMCGen"), 0, particle1.pt()); // to count trigger D0 (for normalisation)
423
424
for (constauto& particle2 : mcParticles) {
424
-
if (particle2.pdgCode() != o2::constants::physics::Pdg::kD0Bar) { // check that inner particle is D0bar
425
+
if (particle2.pdgCode() != Pdg::kD0Bar) { // check that inner particle is D0bar
0 commit comments