Skip to content
Snippets Groups Projects

Drop Overlay.FastChain flag

Merged Tadej Novak requested to merge tadej/athena:overlay_fastchain_flag into 24.0
6 files
+ 21
25
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -144,9 +144,7 @@ def initConfigFlags():
acf.addFlag('Common.isOnline', False, help='job runs in an online environment')
acf.addFlag('Common.useOnlineLumi', lambda prevFlags : prevFlags.Common.isOnline, help='use online version of luminosity')
acf.addFlag('Common.isOverlay', lambda prevFlags: (prevFlags.Common.ProductionStep == ProductionStep.Overlay or
(prevFlags.Common.ProductionStep == ProductionStep.FastChain and
prevFlags.Overlay.FastChain)),
acf.addFlag('Common.isOverlay', lambda prevFlags: prevFlags.Common.ProductionStep == ProductionStep.Overlay,
help='enable overlay')
acf.addFlag('Common.doExpressProcessing', False, help='do express stream processing')
acf.addFlag('Common.ProductionStep', ProductionStep.Default, type=ProductionStep, help='production step')
Loading