Skip to content
Snippets Groups Projects
Commit 2fdb314d authored by Mark Hodgkinson's avatar Mark Hodgkinson
Browse files

Disable PFO thinning in test job options for no algorithms and b-tagging from ESD configurations.

The thinning tries to thin PFO containers which only exist if jet reconstruction is enabled.
It is not enabled in either of these two tests.
parent 48ab2ba4
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,10 @@ doDumpProperties=True ...@@ -13,6 +13,10 @@ doDumpProperties=True
#Turn of TAG #Turn of TAG
rec.doWriteTAG.set_Value_and_Lock(False) rec.doWriteTAG.set_Value_and_Lock(False)
#Disables PFO Thnning - these cotnainers do not exist, unless you run jet finding
from ParticleBuilderOptions.AODFlags import AODFlags
AODFlags.ThinNegativeEnergyNeutralPFOs.set_Value_and_Lock(False)
athenaCommonFlags.EvtMax=-1 athenaCommonFlags.EvtMax=-1
#Run btagging #Run btagging
......
...@@ -26,5 +26,9 @@ jobproperties.InDetJobProperties.doxAOD.set_Value_and_Lock(False) ...@@ -26,5 +26,9 @@ jobproperties.InDetJobProperties.doxAOD.set_Value_and_Lock(False)
#Disables AllExecutedEvents #Disables AllExecutedEvents
rec.doFileMetaData.set_Value_and_Lock(False) rec.doFileMetaData.set_Value_and_Lock(False)
#Disables PFO Thnning - these cotnainers do not exist, unless you run jet finding
from ParticleBuilderOptions.AODFlags import AODFlags
AODFlags.ThinNegativeEnergyNeutralPFOs.set_Value_and_Lock(False)
athenaCommonFlags.EvtMax=10 athenaCommonFlags.EvtMax=10
include ("RecExCommon/RecExCommon_topOptions.py") include ("RecExCommon/RecExCommon_topOptions.py")
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