From 54fd7a89c05f16dfca0f7c73f9020474aec98d40 Mon Sep 17 00:00:00 2001 From: Edward Moyse <edward.moyse@cern.ch> Date: Wed, 6 Nov 2019 14:43:57 +0100 Subject: [PATCH] Protection for case where MuGirl is off, but Stau is on (which shouldn't happen). --- .../MuonCombinedRecExample/python/MuonCombinedAlgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedAlgs.py b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedAlgs.py index 6fe88564b03e..71c4c5787e4e 100644 --- a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedAlgs.py +++ b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedAlgs.py @@ -188,5 +188,5 @@ class MuonCombinedReconstruction(ConfiguredMuonRec): # runs over outputs and create xAODMuon collection topSequence += getAlgorithm("MuonCreatorAlg") - if muonCombinedRecFlags.doMuGirlLowBeta(): + if muonCombinedRecFlags.doMuGirl() and muonCombinedRecFlags.doMuGirlLowBeta(): topSequence += getAlgorithm("StauCreatorAlg") -- GitLab