Skip to content
Snippets Groups Projects
Commit 10bbb72e authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Raise exception in case of view/non-view error

parent 644cd54d
No related branches found
No related tags found
No related merge requests found
......@@ -217,8 +217,7 @@ def makeHLTTree(HLTChains, newJO=False, triggerConfigHLT = None):
# Look for view algs in the whole event context
for viewAlgName in viewAlgs:
if viewAlgName in wholeEventAlgs:
log.error( viewAlgName + " is attached to an EventView node, but also runs in the whole event context" )
exit()
raise RuntimeError( viewAlgName + " is attached to an EventView node, but also runs in the whole event context" )
def matrixDisplay( allSeq ):
......
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