Skip to content
Snippets Groups Projects
Commit f9deb867 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'master-TIDV-art5' into 'master'

Changes for TrigInDetValidation ART tests

See merge request atlas/athena!34538
parents 6802bbe2 8ef6c384
No related merge requests found
......@@ -172,7 +172,7 @@ if ( True ) :
TestMonTool.releaseMetaData = d['nightly name'] + " " + d['nightly release'] + " " + d['date'] + " " + d['platform'] + " " + d['release']
TestMonTool.outputFileName="TrkNtuple.root"
HLTMonManager.AthenaMonTools += [ TestMonTool ]
print TestMonTool
print (TestMonTool)
print ("configured everything")
......
......@@ -103,6 +103,7 @@ rdo2aod.max_events = 1000 # TODO: 2000 events
rdo2aod.threads = 1 # TODO: change to 4
rdo2aod.concurrent_events = 1 # TODO: change to 4
rdo2aod.perfmon = False
rdo2aod.timeout = 18*3600
rdo2aod.args = '--outputAODFile=AOD.pool.root --steering="doRDO_TRIG" '
if local:
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 ):
# Now the comparitor steps
comp=TrigInDetCompStep('CompareStep1')
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)
comp2=TrigInDetCompStep('CompareStep2')
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)
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
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