Skip to content
Snippets Groups Projects
Commit daea824e authored by John Chapman's avatar John Chapman
Browse files

MCTruthClassifier: Use isHeavyBoson and isMSSMHiggs helper functions

parent 63b9d7a2
No related branches found
No related tags found
No related merge requests found
...@@ -300,9 +300,7 @@ ParticleOrigin MCTruthClassifier::defOrigOfElectron(const xAOD::TruthParticleCon ...@@ -300,9 +300,7 @@ ParticleOrigin MCTruthClassifier::defOrigOfElectron(const xAOD::TruthParticleCon
} while ((MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG))); } while ((MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG)));
if (MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) || if (MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) ||
abs(pPDG) == 35 || abs(pPDG) == 36 || abs(pPDG) == 37 || // MSSM Higgs bosons MC::isMSSMHiggs(pPDG) || MC::isHeavyBoson(pPDG) || MC::isTop(pPDG) ||
abs(pPDG) == 32 || abs(pPDG) == 33 || abs(pPDG) == 34 || // Heavy Bosons (Z' Z'' W'+)
MC::isTop(pPDG) ||
abs(pPDG) == 9900024 || abs(pPDG) == 9900012 || abs(pPDG) == 9900014 || abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU abs(pPDG) == 9900024 || abs(pPDG) == 9900012 || abs(pPDG) == 9900014 || abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU
(abs(pPDG) < 2000040 && abs(pPDG) > 1000001)) // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter. (abs(pPDG) < 2000040 && abs(pPDG) > 1000001)) // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter.
mother = MotherParent; mother = MotherParent;
...@@ -507,9 +505,9 @@ ParticleOrigin MCTruthClassifier::defOrigOfElectron(const xAOD::TruthParticleCon ...@@ -507,9 +505,9 @@ ParticleOrigin MCTruthClassifier::defOrigOfElectron(const xAOD::TruthParticleCon
if (MC::isHiggs(motherPDG)) return Higgs; if (MC::isHiggs(motherPDG)) return Higgs;
if (abs(motherPDG) == 35 || abs(motherPDG) == 36 || abs(motherPDG) == 37) return HiggsMSSM; // MSSM Higgs bosons. if (MC::isMSSMHiggs(motherPDG)) return HiggsMSSM;
if (abs(motherPDG) == 32 || abs(motherPDG) == 33 || abs(motherPDG) == 34) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+). if (MC::isHeavyBoson(motherPDG)) return HeavyBoson;
if (MC::isMuon(motherPDG)) return Mu; if (MC::isMuon(motherPDG)) return Mu;
if (MC::isTau(motherPDG)) { if (MC::isTau(motherPDG)) {
...@@ -605,9 +603,7 @@ ParticleOrigin MCTruthClassifier::defOrigOfMuon(const xAOD::TruthParticleContain ...@@ -605,9 +603,7 @@ ParticleOrigin MCTruthClassifier::defOrigOfMuon(const xAOD::TruthParticleContain
} while ((MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG))); } while ((MC::isMuon(pPDG) || MC::isTau(pPDG) || MC::isW(pPDG)));
if (MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) || if (MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) ||
abs(pPDG) == 35 || abs(pPDG) == 36 || abs(pPDG) == 37 || // MSSM Higgs bosons MC::isMSSMHiggs(pPDG) || MC::isHeavyBoson(pPDG) || MC::isTop(pPDG) ||
abs(pPDG) == 32 || abs(pPDG) == 33 || abs(pPDG) == 34 || // Heavy Bosons (Z' Z'' W'+)
MC::isTop(pPDG) ||
abs(pPDG) == 9900024 || abs(pPDG) == 9900012 || abs(pPDG) == 9900014 || abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU abs(pPDG) == 9900024 || abs(pPDG) == 9900012 || abs(pPDG) == 9900014 || abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU
(abs(pPDG) < 2000040 && abs(pPDG) > 1000001)) { // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter. (abs(pPDG) < 2000040 && abs(pPDG) > 1000001)) { // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter.
if (info) info->setMotherProperties(mother); if (info) info->setMotherProperties(mother);
...@@ -751,9 +747,9 @@ ParticleOrigin MCTruthClassifier::defOrigOfMuon(const xAOD::TruthParticleContain ...@@ -751,9 +747,9 @@ ParticleOrigin MCTruthClassifier::defOrigOfMuon(const xAOD::TruthParticleContain
if (MC::isHiggs(motherPDG)) return Higgs; if (MC::isHiggs(motherPDG)) return Higgs;
if (abs(motherPDG) == 35 || abs(motherPDG) == 36 || abs(motherPDG) == 37) return HiggsMSSM; // MSSM Higgs bosons if (MC::isMSSMHiggs(motherPDG)) return HiggsMSSM;
if (abs(motherPDG) == 32 || abs(motherPDG) == 33 || abs(motherPDG) == 34) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+) if (MC::isHeavyBoson(motherPDG)) return HeavyBoson;
if (abs(motherPDG) == 9900024) return WBosonLRSM; // Left-right symmetric model WBoson if (abs(motherPDG) == 9900024) return WBosonLRSM; // Left-right symmetric model WBoson
if (abs(motherPDG) == 9900012) return NuREle; // Right-handed NU_E if (abs(motherPDG) == 9900012) return NuREle; // Right-handed NU_E
...@@ -934,8 +930,8 @@ ParticleOrigin MCTruthClassifier::defOrigOfTau(const xAOD::TruthParticleContaine ...@@ -934,8 +930,8 @@ ParticleOrigin MCTruthClassifier::defOrigOfTau(const xAOD::TruthParticleContaine
} }
if (MC::isHiggs(motherPDG)) return Higgs; if (MC::isHiggs(motherPDG)) return Higgs;
if (abs(motherPDG) == 35 || abs(motherPDG) == 36 || abs(motherPDG) == 37) return HiggsMSSM; // MSSM Higgs bosons. if (MC::isMSSMHiggs(motherPDG)) return HiggsMSSM;
if (abs(motherPDG) == 32 || abs(motherPDG) == 33 || abs(motherPDG) == 34) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+) if (MC::isHeavyBoson(motherPDG)) return HeavyBoson;
if (abs(motherPDG) == 9900024) return WBosonLRSM; // Left-right symmetric model WBoson if (abs(motherPDG) == 9900024) return WBosonLRSM; // Left-right symmetric model WBoson
if (abs(motherPDG) == 9900016) return NuRTau; // Right-handed NU_TAU if (abs(motherPDG) == 9900016) return NuRTau; // Right-handed NU_TAU
if (MC::isSUSY(motherPDG)) return SUSY; if (MC::isSUSY(motherPDG)) return SUSY;
...@@ -1190,8 +1186,8 @@ ParticleOrigin MCTruthClassifier::defOrigOfPhoton(const xAOD::TruthParticleConta ...@@ -1190,8 +1186,8 @@ ParticleOrigin MCTruthClassifier::defOrigOfPhoton(const xAOD::TruthParticleConta
if (MC::isHiggs(motherPDG)) return Higgs; if (MC::isHiggs(motherPDG)) return Higgs;
if (abs(motherPDG) == MC::PI0) return PiZero; if (abs(motherPDG) == MC::PI0) return PiZero;
if (abs(motherPDG) == 35 || abs(motherPDG) == 36 || abs(motherPDG) == 37) return HiggsMSSM; // MSSM Higgs bosons. if (MC::isMSSMHiggs(motherPDG)) return HiggsMSSM;
if (abs(motherPDG) == 32 || abs(motherPDG) == 33 || abs(motherPDG) == 34 || abs(motherPDG) == 5100039 ) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+) + KK excited graviton if (MC::isHeavyBoson(motherPDG) || std::abs(motherPDG) == 5100039 ) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+) + KK excited graviton
if (MC::isSUSY(motherPDG)) return SUSY; if (MC::isSUSY(motherPDG)) return SUSY;
if (MC::isBSM(motherPDG)) return OtherBSM; if (MC::isBSM(motherPDG)) return OtherBSM;
...@@ -1281,9 +1277,7 @@ MCTruthClassifier::defOrigOfNeutrino(const xAOD::TruthParticleContainer* mcTruth ...@@ -1281,9 +1277,7 @@ MCTruthClassifier::defOrigOfNeutrino(const xAOD::TruthParticleContainer* mcTruth
} while ((std::abs(pPDG) == nuFlav || MC::isTau(pPDG) || MC::isW(pPDG))); } while ((std::abs(pPDG) == nuFlav || MC::isTau(pPDG) || MC::isW(pPDG)));
if (std::abs(pPDG) == nuFlav || MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) || if (std::abs(pPDG) == nuFlav || MC::isTau(pPDG) || MC::isW(pPDG) || MC::isZ(pPDG) || MC::isHiggs(pPDG) ||
std::abs(pPDG) == 35 || std::abs(pPDG) == 36 || std::abs(pPDG) == 37 || // MSSM Higgs bosons. MC::isMSSMHiggs(pPDG) || MC::isHeavyBoson(pPDG) || MC::isTop(pPDG) ||
std::abs(pPDG) == 32 || std::abs(pPDG) == 33 || std::abs(pPDG) == 34 || // Heavy Bosons (Z' Z'' W'+)
MC::isTop(pPDG) ||
std::abs(pPDG) == 9900024 || std::abs(pPDG) == 9900012 || std::abs(pPDG) == 9900014 || std::abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU std::abs(pPDG) == 9900024 || std::abs(pPDG) == 9900012 || std::abs(pPDG) == 9900014 || std::abs(pPDG) == 9900016 || // Left-right symmetric model WBoson || Right-handed NU_E || Right-handed NU_MU || Right-handed NU_TAU
(std::abs(pPDG) < 2000040 && std::abs(pPDG) > 1000001)) { // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter. (std::abs(pPDG) < 2000040 && std::abs(pPDG) > 1000001)) { // FIXME This is nearly MC::isSUSY(pPDG), but slightly stricter.
mother = MotherParent; mother = MotherParent;
...@@ -1449,8 +1443,8 @@ MCTruthClassifier::defOrigOfNeutrino(const xAOD::TruthParticleContainer* mcTruth ...@@ -1449,8 +1443,8 @@ MCTruthClassifier::defOrigOfNeutrino(const xAOD::TruthParticleContainer* mcTruth
//-- McAtNLo //-- McAtNLo
if (MC::isHiggs(motherPDG)) return Higgs; if (MC::isHiggs(motherPDG)) return Higgs;
if (abs(motherPDG) == 35 || abs(motherPDG) == 36 || abs(motherPDG) == 37) return HiggsMSSM; // MSSM Higgs bosons. if (MC::isMSSMHiggs(motherPDG)) return HiggsMSSM;
if (abs(motherPDG) == 32 || abs(motherPDG) == 33 || abs(motherPDG) == 34) return HeavyBoson; // Heavy Bosons (Z' Z'' W'+) if (MC::isHeavyBoson(motherPDG)) return HeavyBoson;
if (MC::isTau(motherPDG)) { if (MC::isTau(motherPDG)) {
ParticleOrigin tauOrig = defOrigOfTau(mcTruthTES, mother, motherPDG, info); ParticleOrigin tauOrig = defOrigOfTau(mcTruthTES, mother, motherPDG, info);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment