Skip to content
Snippets Groups Projects
Commit 15902c8d authored by Nils Erik Krumnack's avatar Nils Erik Krumnack
Browse files

Merge branch '21.2-AT_setRandomSeedForMetSyst' into '21.2'

AnalysisTop: Set random seed in MissingETObjectCollectionMaker

See merge request !38425
parents df1da144 ce5b17b6
15 merge requests!76035Updated rel21 number,!63304adding missing electron iso WPs (Tight_VarRad, Loose_VarRad, TightTrackOnly_VarRad),!62053Merge branch 'sh_xrd_warning' into 'master',!61521fix maxPVrefit,!59663fixed a typo in HIGG8D1 format (followup of https://gitlab.cern.ch/atlas/athena/-/merge_requests/59575),!50754Return TruthTaus from truth matching tool in SUSY tools,!48850Added new HDBS derivation (HDBS3),!46643Draft:Adding MET Significance in AT,!46320Draft: Adding support for Leading3SignalJets strategy,!45689Bug fix: Use wrong vector to calculate largest bin number in findBin(),!45211Update in the FFJetSmearingTool,!44864Draft: WIP- MuonUncorrelateSystematics,!43718Modification of EXOT17.py for fractionally charged particle search,!40581Fix crash in egamma topocluster decorator,!38425AnalysisTop: Set random seed in MissingETObjectCollectionMaker
......@@ -266,11 +266,13 @@ namespace top {
//get the soft cluster term, and applyCorrection
xAOD::MissingET* softClusMet = (*new_met_container)["SoftClus"];
if (softClusMet != nullptr) { //check we retrieved the clust term
m_met_systematics->setRandomSeed(static_cast<int>(1e6*softClusMet->phi()));
top::check(m_met_systematics->applyCorrection(*softClusMet), "Failed to applyCorrection");
}
xAOD::MissingET* softTrkMet = (*new_met_container)["PVSoftTrk"];
if (softTrkMet != nullptr) { //check we retrieved the soft trk
m_met_systematics->setRandomSeed(static_cast<int>(1e6*softTrkMet->phi()));
top::check(m_met_systematics->applyCorrection(*softTrkMet), "Failed to applyCorrection");
}
}
......
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