Skip to content

Commit

Permalink
Remove logic for setting nConcurrentLumis in favor of similar logic n…
Browse files Browse the repository at this point in the history
…ow in cmsRun
  • Loading branch information
makortel committed Sep 16, 2021
1 parent 0db308a commit 8c93c02
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Configuration/Applications/python/cmsDriverOptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,6 @@ def OptionsFromItems(items):

#now adjust the given parameters before passing it to the ConfigBuilder

# concurrency options
nStreams = options.nStreams if options.nStreams != '0' else options.nThreads
if options.nConcurrentLumis == '0':
options.nConcurrentLumis = '1' if nStreams == '1' else '2'
if options.nConcurrentIOVs == '0':
options.nConcurrentIOVs = options.nConcurrentLumis

#trail a "/" to dirin and dirout
if options.dirin!='' and (not options.dirin.endswith('/')): options.dirin+='/'
if options.dirout!='' and (not options.dirout.endswith('/')): options.dirout+='/'
Expand Down

0 comments on commit 8c93c02

Please sign in to comment.