Skip to content
Snippets Groups Projects
Commit 276a1412 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'trigp1test-num-events' into 'master'

TrigP1Test: Increase default number of events for "build" tests

See merge request atlas/athena!30805
parents 7964b873 3bbb1b92
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ hlt.type = 'Trig_reco_tf'
hlt.forks = 1
hlt.threads = 1
hlt.concurrent_events = 1
hlt.max_events = 50
hlt.args = '--precommand=\\\"setMenu=\\\'PhysicsP1_pp_run3_v1\\\'\\\"'
hlt.args += ' --prodSysBSRDO True'
hlt.args += ' --outputBSFile=RAW.pool.root'
......@@ -33,7 +34,8 @@ tzreco = ExecStep.ExecStep('Tier0Reco')
tzreco.type = 'Trig_reco_tf'
tzreco.threads = 1
tzreco.explicit_input = True
tzreco.input = ''
tzreco.input = ''
tzreco.max_events = 50
tzreco.args = '--inputBSFile=RAW.pool.root' # output of the previous step
tzreco.args += ' --outputESDFile=ESD.pool.root --outputAODFile=AOD.pool.root'
tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2018-11\' --geometryVersion=\'ATLAS-R2-2016-01-00-01\''
......
......@@ -16,6 +16,7 @@ hlt = ExecStep.ExecStep()
hlt.type = 'athenaHLT'
hlt.job_options = 'TriggerJobOpts/runHLT_standalone.py'
hlt.input = 'data'
hlt.max_events = 50
hlt.args = '-c "setMenu=\'PhysicsP1_pp_run3_v1\';"'
hlt.args += ' -o output'
......@@ -40,6 +41,7 @@ tzreco.type = 'Reco_tf'
tzreco.threads = 1
tzreco.input = ''
tzreco.explicit_input = True
tzreco.max_events = 50
tzreco.args = '--inputBSFile=' + findFile('*.physics_Main*._athenaHLT*.data') # output of the previous step
tzreco.args += ' --outputESDFile=ESD.pool.root --outputAODFile=AOD.pool.root'
tzreco.args += ' --conditionsTag=\'CONDBR2-BLKPA-2018-11\' --geometryVersion=\'ATLAS-R2-2016-01-00-01\''
......
......@@ -199,7 +199,7 @@ class ExecStep(Step):
if self.max_events is None:
if test.art_type == 'build':
if test.package_name == 'TrigP1Test':
self.max_events = 50
self.max_events = 100
else:
self.max_events = 20
else:
......@@ -207,7 +207,7 @@ class ExecStep(Step):
# Set prmon interval based on max events
if self.prmon:
if self.max_events < 100:
if self.max_events <= 100:
self.prmon_interval = 5
else:
self.prmon_interval = 10
......
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