Skip to content
Snippets Groups Projects
Commit 4398daa2 authored by Matthew Thomas Anthony's avatar Matthew Thomas Anthony :speech_balloon:
Browse files

Reorder execution stack of Flow Element linkers to Tau and validation plots drawing from them

parent b92e1d10
No related merge requests found
...@@ -283,32 +283,6 @@ if jobproperties.eflowRecFlags.useFlowElements: ...@@ -283,32 +283,6 @@ if jobproperties.eflowRecFlags.useFlowElements:
PFMuonFlowElementAssocAlg.m_UseMuonTopoClusters=False # requires m_LinkNeutralFEClusters=True and if set to True= Retrieves TopoClusters from Aux. If not, cell-match muon calocluster to NFE topocluster. PFMuonFlowElementAssocAlg.m_UseMuonTopoClusters=False # requires m_LinkNeutralFEClusters=True and if set to True= Retrieves TopoClusters from Aux. If not, cell-match muon calocluster to NFE topocluster.
topSequence += PFMuonFlowElementAssocAlg topSequence += PFMuonFlowElementAssocAlg
if jobproperties.eflowRecFlags.doFlowElementValidation:
# since FE are not added at Tier0 yet, need to add it to the eflowRec routine
from AthenaMonitoring.AthenaMonitoringConf import AthenaMonManager
monMan = AthenaMonManager( "PhysValMonManager" )
monMan.ManualDataTypeSetup = True
monMan.DataType = "monteCarlo"
monMan.Environment = "altprod"
monMan.ManualRunLBSetup = True
monMan.Run = 1
monMan.LumiBlock = 1
monMan.FileKey = "PhysVal"
include("PhysValMonitoring/PhysValPFlow_FlowElements_jobOptions.py")
for tool in monMan.AthenaMonTools:
tool.EnableLumi = False
tool.ManagerName = 'PhysValMonManager'
from AthenaCommon.AppMgr import ServiceMgr
from GaudiSvc.GaudiSvcConf import THistSvc
ServiceMgr += THistSvc()
svcMgr.THistSvc.Output += ["PhysVal DATAFILE='PhysVal.root' OPT='RECREATE'"]
topSequence += monMan
......
...@@ -6,3 +6,29 @@ if jobproperties.eflowRecFlags.usePFTauFlowElementAssoc and jobproperties.eflowR ...@@ -6,3 +6,29 @@ if jobproperties.eflowRecFlags.usePFTauFlowElementAssoc and jobproperties.eflowR
from eflowRec.eflowRecConf import PFTauFlowElementAssoc from eflowRec.eflowRecConf import PFTauFlowElementAssoc
PFTauFlowElementAssoc=PFTauFlowElementAssoc("PFTauFlowElementAssoc") PFTauFlowElementAssoc=PFTauFlowElementAssoc("PFTauFlowElementAssoc")
topSequence += PFTauFlowElementAssoc topSequence += PFTauFlowElementAssoc
if jobproperties.eflowRecFlags.doFlowElementValidation and jobproperties.eflowRecFlags.useFlowElements:
# since FE are not added at Tier0 yet, need to add it to the eflowRec routine
from AthenaMonitoring.AthenaMonitoringConf import AthenaMonManager
monMan = AthenaMonManager( "PhysValMonManager" )
monMan.ManualDataTypeSetup = True
monMan.DataType = "monteCarlo"
monMan.Environment = "altprod"
monMan.ManualRunLBSetup = True
monMan.Run = 1
monMan.LumiBlock = 1
monMan.FileKey = "PhysVal"
include("PhysValMonitoring/PhysValPFlow_FlowElements_jobOptions.py")
for tool in monMan.AthenaMonTools:
tool.EnableLumi = False
tool.ManagerName = 'PhysValMonManager'
from AthenaCommon.AppMgr import ServiceMgr
from GaudiSvc.GaudiSvcConf import THistSvc
ServiceMgr += THistSvc()
svcMgr.THistSvc.Output += ["PhysVal DATAFILE='PhysVal.root' OPT='RECREATE'"]
topSequence += monMan
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