Skip to content
Snippets Groups Projects
Commit 1647a8e3 authored by Mark Hodgkinson's avatar Mark Hodgkinson Committed by Graeme Stewart
Browse files

2015-05-18 Mark Hodgkinson

        * ATLJETMET-360
        * python/JetRecUtils.py: Update retrieveAODList to NOT add any container with "HLT" in the name.
        * JetRec-03-00-39-03 (JetRec-03-00-39-03)
parent af75264b
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,8 @@ def retrieveAODList():
def saveThisObject(o):
# return True if o is of a desired type
if "HLT_" in o:
return False
return any( o.startswith( typ ) for typ in typeToSave )
esdjets = [ o for o in inputcontent if saveThisObject(o) ]
......
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