From 0b6a22de7b51cb8d4fed2e26bd1f4289f8dd08ad Mon Sep 17 00:00:00 2001
From: Matthew Thomas Anthony <matthew.thomas.anthony@cern.ch>
Date: Thu, 22 Jul 2021 13:36:07 +0000
Subject: [PATCH] update test config to have everything physval might need for
 plots

---
 .../eflowRec/share/run_ESDPFlowRecoR22_withLinking.py    | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/Reconstruction/eflowRec/share/run_ESDPFlowRecoR22_withLinking.py b/Reconstruction/eflowRec/share/run_ESDPFlowRecoR22_withLinking.py
index 66734d776581..123ff444a9ce 100644
--- a/Reconstruction/eflowRec/share/run_ESDPFlowRecoR22_withLinking.py
+++ b/Reconstruction/eflowRec/share/run_ESDPFlowRecoR22_withLinking.py
@@ -21,11 +21,12 @@ jobproperties.CaloRecFlags.doCaloTopoCluster.set_Value_and_Lock(True)
 from RecExConfig.RecAlgsFlags import recAlgs
 recAlgs.doEFlow.set_Value_and_Lock(True)
 
-#Disable reco of trigger, egamma, muons
+#Disable reco of trigger
 from RecExConfig.RecFlags import rec
 rec.doTrigger.set_Value_and_Lock(False)
-rec.doEgamma.set_Value_and_Lock(False)
-rec.doMuon.set_Value_and_Lock(False)
+# enable egamma and muon reco
+rec.doEgamma.set_Value_and_Lock(True)
+rec.doMuon.set_Value_and_Lock(True)
 
 #Disable linking of FE to taus - we run tau reco via UserAlgs and so will have to also run the linking there directly
 from eflowRec.eflowRecFlags import jobproperties
@@ -47,7 +48,7 @@ rec.doCaloRinger.set_Value_and_Lock(False)
 
 #Disable VertexCnvAlg
 from InDetRecExample.InDetJobProperties import jobproperties
-jobproperties.InDetJobProperties.doxAOD.set_Value_and_Lock(False)
+jobproperties.InDetJobProperties.doxAOD.set_Value_and_Lock(True)
 #Disable AllExecutedEvents
 rec.doFileMetaData.set_Value_and_Lock(False)
 
-- 
GitLab