Skip to content

Commit

Permalink
Merge pull request #40928 from missirol/fix40904
Browse files Browse the repository at this point in the history
use unique names for outputs of HLT-DQM unit tests
  • Loading branch information
cmsbuild authored Mar 3, 2023
2 parents bdc7d19 + aca1439 commit 3b5e32b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DQM/HLTEvF/test/testTriggerMonitors_dqm_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
])
options.setDefault('maxEvents', 200)
options.setType('outputFile', options.varType.string)
options.setDefault('outputFile', 'DQMIO.root')
options.setDefault('outputFile', 'testTriggerMonitors_DQMIO.root')
options.parseArguments()

# Process
Expand Down
2 changes: 1 addition & 1 deletion DQM/HLTEvF/test/testTriggerMonitors_harvesting_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
options = VarParsing.VarParsing('analysis')
options.register('nThreads', 4, options.multiplicity.singleton, options.varType.int, 'number of threads')
options.register('nStreams', 0, options.multiplicity.singleton, options.varType.int, 'number of streams')
options.setDefault('inputFiles', ['file:DQMIO.root'])
options.setDefault('inputFiles', ['file:testTriggerMonitors_DQMIO.root'])
options.parseArguments()

# Process
Expand Down
2 changes: 1 addition & 1 deletion DQMOffline/Trigger/test/harvesting_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
default = 0)

parser.add_argument('-i', '--inputFiles', nargs = '+', help = 'List of DQMIO input files',
default = ['file:DQMIO.root'])
default = ['file:testHLTFiltersDQMonitor_DQMIO.root'])

argv = sys.argv[:]
if '--' in argv:
Expand Down
2 changes: 1 addition & 1 deletion DQMOffline/Trigger/test/testHLTFiltersDQMonitor_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
default = 100)

parser.add_argument('-o', '--outputFile', type = str, help = 'Path to output file in DQMIO format',
default = 'DQMIO.root')
default = 'testHLTFiltersDQMonitor_DQMIO.root')

parser.add_argument('--wantSummary', action = 'store_true', help = 'Value of process.options.wantSummary',
default = False)
Expand Down

0 comments on commit 3b5e32b

Please sign in to comment.