Skip to content
Snippets Groups Projects
Commit 8ef6c384 authored by Julie Kirk's avatar Julie Kirk
Browse files

Changes for TrigInDetValidation ART tests

- fix for python 3 in TrigInDetValidation_AODtoTrkNtuple.py
- add extra post-processing in test_trigID_all_ttbar_pu80_grid.py

	modified:   Trigger/TrigValidation/TrigInDetValidation/share/TrigInDetValidation_AODtoTrkNtuple.py
	modified:   Trigger/TrigValidation/TrigInDetValidation/test/test_trigID_all_ttbar_pu80_grid.py
parent b8334652
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,7 @@ if ( True ) : ...@@ -172,7 +172,7 @@ if ( True ) :
TestMonTool.releaseMetaData = d['nightly name'] + " " + d['nightly release'] + " " + d['date'] + " " + d['platform'] + " " + d['release'] TestMonTool.releaseMetaData = d['nightly name'] + " " + d['nightly release'] + " " + d['date'] + " " + d['platform'] + " " + d['release']
TestMonTool.outputFileName="TrkNtuple.root" TestMonTool.outputFileName="TrkNtuple.root"
HLTMonManager.AthenaMonTools += [ TestMonTool ] HLTMonManager.AthenaMonTools += [ TestMonTool ]
print TestMonTool print (TestMonTool)
print ("configured everything") print ("configured everything")
......
...@@ -103,6 +103,7 @@ rdo2aod.max_events = 1000 # TODO: 2000 events ...@@ -103,6 +103,7 @@ rdo2aod.max_events = 1000 # TODO: 2000 events
rdo2aod.threads = 1 # TODO: change to 4 rdo2aod.threads = 1 # TODO: change to 4
rdo2aod.concurrent_events = 1 # TODO: change to 4 rdo2aod.concurrent_events = 1 # TODO: change to 4
rdo2aod.perfmon = False rdo2aod.perfmon = False
rdo2aod.timeout = 18*3600
rdo2aod.args = '--outputAODFile=AOD.pool.root --steering="doRDO_TRIG" ' rdo2aod.args = '--outputAODFile=AOD.pool.root --steering="doRDO_TRIG" '
if local: if local:
rdo2aod.input = 'ttbar_pu80' ## This isn't the same sample as the grid test but for not lets use it. rdo2aod.input = 'ttbar_pu80' ## This isn't the same sample as the grid test but for not lets use it.
...@@ -130,15 +131,25 @@ if ((not exclude) or postproc ): ...@@ -130,15 +131,25 @@ if ((not exclude) or postproc ):
# Now the comparitor steps # Now the comparitor steps
comp=TrigInDetCompStep('CompareStep1') comp=TrigInDetCompStep('CompareStep1')
comp.chains = 'HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_FTF' comp.chains = 'HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_FTF'
comp.output_dir = 'HLT-plots-FTF' comp.output_dir = 'HLT-plots-muon-FTF'
test.check_steps.append(comp) test.check_steps.append(comp)
comp2=TrigInDetCompStep('CompareStep2') comp2=TrigInDetCompStep('CompareStep2')
comp2.chains='HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_FTF HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_IDTrig' comp2.chains='HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_FTF HLT_mu24_idperf_InDetTrigTrackingxAODCnv_Muon_IDTrig'
comp2.output_dir = 'HLT-plots-IDTrig' comp2.output_dir = 'HLT-plots-muon-IDTrig'
test.check_steps.append(comp2) test.check_steps.append(comp2)
comp3=TrigInDetCompStep('CompareStep3')
comp3.chains='HLT_j45_ftf_subjesgscIS_boffperf_split_L1J20:HLT_IDTrack_Bjet_FTF HLT_j45_ftf_subjesgscIS_boffperf_split_L1J20:HLT_IDTrack_Bjet_IDTrig'
comp3.output_dir = 'HLT-plots-bjet-IDTrig'
test.check_steps.append(comp3)
comp4=TrigInDetCompStep('CompareStep4')
comp4.chains='HLT_e5_etcut_L1EM3:HLT_IDTrack_Electron_FTF HLT_e5_etcut_L1EM3:HLT_IDTrack_Electron_IDTrig'
comp4.output_dir = 'HLT-plots-el-IDTrig'
test.check_steps.append(comp4)
import sys import sys
sys.exit(test.run()) sys.exit(test.run())
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