Skip to content
Snippets Groups Projects
Verified Commit 8ec24c82 authored by Tadej Novak's avatar Tadej Novak
Browse files

Fix running FilterHit when no events are skipped

parent 26911d67
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,8 @@ else: ...@@ -99,7 +99,8 @@ else:
ServiceMgr.EventSelector.InputCollections = athenaCommonFlags.PoolHitsInput() ServiceMgr.EventSelector.InputCollections = athenaCommonFlags.PoolHitsInput()
theApp.EvtSel = "EventSelector" theApp.EvtSel = "EventSelector"
# Number of input events to be skipped # Number of input events to be skipped
ServiceMgr.EventSelector.SkipEvents = athenaCommonFlags.SkipEvents() if hasattr(runArgs,"skipEvents"):
ServiceMgr.EventSelector.SkipEvents = athenaCommonFlags.SkipEvents()
#-------------------------------------------------------------- #--------------------------------------------------------------
# Setup Output # 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