From 8c93c02d4c88a46a4048e9145f9c998c8425ec24 Mon Sep 17 00:00:00 2001 From: Matti Kortelainen Date: Thu, 16 Sep 2021 02:34:06 +0200 Subject: [PATCH] Remove logic for setting nConcurrentLumis in favor of similar logic now in cmsRun --- Configuration/Applications/python/cmsDriverOptions.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Configuration/Applications/python/cmsDriverOptions.py b/Configuration/Applications/python/cmsDriverOptions.py index 6d3643231cdb5..ba8fc6e6442ed 100755 --- a/Configuration/Applications/python/cmsDriverOptions.py +++ b/Configuration/Applications/python/cmsDriverOptions.py @@ -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+='/'