Skip to content
Snippets Groups Projects
Commit cb29f9f0 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'filterhit' into 'master'

Fix running FilterHit when no events are skipped

See merge request atlas/athena!38287
parents a46358b5 8ec24c82
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,8 @@ else:
ServiceMgr.EventSelector.InputCollections = athenaCommonFlags.PoolHitsInput()
theApp.EvtSel = "EventSelector"
# Number of input events to be skipped
ServiceMgr.EventSelector.SkipEvents = athenaCommonFlags.SkipEvents()
if hasattr(runArgs,"skipEvents"):
ServiceMgr.EventSelector.SkipEvents = athenaCommonFlags.SkipEvents()
#--------------------------------------------------------------
# Setup Output
......
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