File indexing completed on 2025-03-14 23:36:18
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 import FWCore.ParameterSet.Config as cms
0018
0019 process = cms.Process("TEST")
0020
0021 process.source = cms.Source("EmptySource",
0022 firstRun = cms.untracked.uint32(1),
0023 firstLuminosityBlock = cms.untracked.uint32(1),
0024 firstEvent = cms.untracked.uint32(1),
0025 numberEventsInLuminosityBlock = cms.untracked.uint32(1),
0026 numberEventsInRun = cms.untracked.uint32(1)
0027 )
0028
0029 process.maxEvents.input = 30
0030
0031 process.options = dict(
0032 numberOfThreads = 8,
0033 numberOfStreams = 8,
0034 numberOfConcurrentRuns = 3,
0035 numberOfConcurrentLuminosityBlocks = 8,
0036 eventSetup = dict(
0037 numberOfConcurrentIOVs = 8
0038 )
0039 )
0040
0041 process.runLumiESSource = cms.ESSource("RunLumiESSource")
0042
0043 process.test = cms.EDAnalyzer("RunLumiESAnalyzer")
0044
0045 process.busy1 = cms.EDProducer("BusyWaitIntProducer",ivalue = cms.int32(1), iterations = cms.uint32(40*1000*1000))
0046
0047 process.p1 = cms.Path(process.busy1 * process.test)
0048
0049 process.out = cms.OutputModule("PoolOutputModule",
0050 fileName = cms.untracked.string('testConcurrentIOVsAndRuns.root')
0051 )
0052
0053 process.e = cms.EndPath(process.out)