Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove logic for setting nConcurrentLumis from cmsDriver in favor of similar logic now in cmsRun #35302

Merged
merged 1 commit into from
Sep 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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