Skip to content
Snippets Groups Projects
Commit f35331c3 authored by scott snyder's avatar scott snyder
Browse files

TrigValAlgs: python 3 fixes

 - iteritems
parent 3ca63e0e
No related branches found
No related tags found
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!29993TrigValAlgs: python 3 fixes
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
from TrigValAlgs.TrigValAlgsConf import TrigCountDumper
from TrigValAlgs.TrigValAlgsConf import TrigDecisionChecker
from TrigValAlgs.TrigValAlgsConf import TrigEDMChecker
from TrigValAlgs.TrigValAlgsConf import TrigSlimValAlg
from TrigValAlgs.TrigValAlgsConf import TrigEDMAuxChecker
import six
# TrigCountDumper configurable
# Run with TrigCountDumper configured from AOD header
class TrigCountDumper ( TrigCountDumper ):
......@@ -129,7 +130,7 @@ def getEDMAuxList():
from TrigEDMConfig.TriggerEDM import getTriggerObjList,TriggerHLTList
tlist=getTriggerObjList('AODFULL',[TriggerHLTList])
objlist=[]
for t,kset in tlist.iteritems():
for t,kset in six.iteritems(tlist):
for k in kset:
if 'Aux' in k:
s = k.split('-',1)[0]
......
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