Skip to content
Snippets Groups Projects

Fix StrippingCache

Merged Michael Thomas Alexander requested to merge malexand-fix-strippingcache into master
4 files
+ 25
1
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -69,6 +69,12 @@ filterBadEvents = GaudiSequencer("BadEventFilter",
streamFilter = { 'default' : filterBadEvents,
'MiniBias' : ProcStatusCheck() }
# Fix for removal of default constructor for AALLSAMEBPV after DV v41r3.
from Gaudi.Configuration import allConfigurables
for conf in allConfigurables.values() :
if hasattr(conf, 'CombinationCut') and 'AALLSAMEBPV' in conf.CombinationCut :
conf.CombinationCut = conf.CombinationCut.replace('AALLSAMEBPV', 'AALLSAMEBPV(-1, -1, -1)')
sc = StrippingConf( Streams = streams,
MaxCandidates = 2000,
AcceptBadEvents = False,
Loading