File indexing completed on 2023-10-25 09:36:36
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 import FWCore.ParameterSet.Config as cms
0025
0026 process = cms.Process("TEST")
0027
0028
0029
0030 process.options = dict(
0031 numberOfThreads = 4,
0032 numberOfStreams = 4,
0033 numberOfConcurrentRuns = 1,
0034 numberOfConcurrentLuminosityBlocks = 4,
0035 eventSetup = dict(
0036 numberOfConcurrentIOVs = 4
0037 )
0038 )
0039
0040 process.load("FWCore.MessageService.MessageLogger_cfi")
0041 process.MessageLogger = cms.Service("MessageLogger",
0042 destinations = cms.untracked.vstring('TestConcurrentIOVsCondCoreCout','cout'),
0043 TestConcurrentIOVsCondCoreCout = cms.untracked.PSet(
0044 threshold = cms.untracked.string('WARNING')
0045 )
0046 )
0047
0048 process.source = cms.Source("EmptySource",
0049 firstRun = cms.untracked.uint32(132598),
0050 firstLuminosityBlock = cms.untracked.uint32(1),
0051 firstEvent = cms.untracked.uint32(1),
0052 numberEventsInRun = cms.untracked.uint32(1000000),
0053 numberEventsInLuminosityBlock = cms.untracked.uint32(1)
0054 )
0055
0056 process.maxEvents = cms.untracked.PSet(
0057 input = cms.untracked.int32(200)
0058 )
0059
0060 process.GlobalTag = cms.ESSource("PoolDBESSource",
0061 DBParameters = cms.PSet(
0062 authenticationPath = cms.untracked.string(''),
0063 authenticationSystem = cms.untracked.int32(0),
0064 messageLevel = cms.untracked.int32(0),
0065 security = cms.untracked.string('')
0066 ),
0067 DumpStat = cms.untracked.bool(False),
0068 ReconnectEachRun = cms.untracked.bool(False),
0069 RefreshAlways = cms.untracked.bool(False),
0070 RefreshEachRun = cms.untracked.bool(False),
0071 RefreshOpenIOVs = cms.untracked.bool(False),
0072 connect = cms.string('frontier://FrontierProd/CMS_CONDITIONS'),
0073 globaltag = cms.string(''),
0074 pfnPostfix = cms.untracked.string(''),
0075 pfnPrefix = cms.untracked.string(''),
0076 snapshotTime = cms.string('2020-10-10 00:00:00.000'),
0077 toGet = cms.VPSet(cms.VPSet(cms.PSet(record = cms.string("BeamSpotObjectsRcd"),
0078 tag = cms.string("BeamSpotObjects_2017UL_LumiBased_v2")
0079 ))
0080 )
0081 )
0082
0083 process.test = cms.EDAnalyzer("TestConcurrentIOVsCondCore")
0084
0085 process.p = cms.Path(process.test)