Skip to content

Commit

Permalink
Merge pull request #35302 from makortel/cleanConfigBuilderConcurrentL…
Browse files Browse the repository at this point in the history
…umis

Remove logic for setting nConcurrentLumis from cmsDriver in favor of similar logic now in cmsRun
  • Loading branch information
cmsbuild authored Sep 19, 2021
2 parents b11d377 + 8c93c02 commit fae0291
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 fae0291

Please sign in to comment.