File indexing completed on 2023-03-17 11:02:49
0001
0002 import FWCore.ParameterSet.Config as cms
0003 process = cms.Process("TEST")
0004 process.source = cms.Source("EmptySource")
0005 process.maxEvents = cms.untracked.PSet(
0006 input = cms.untracked.int32(1)
0007 )
0008
0009 process.options = dict(
0010 dumpOptions = True,
0011 numberOfThreads = 4,
0012 numberOfStreams = 4,
0013 numberOfConcurrentLuminosityBlocks = 7,
0014 eventSetup = dict(
0015 numberOfConcurrentIOVs = 7
0016 )
0017 )
0018
0019 process.looper = cms.Looper("DummyLooper",
0020 value = cms.untracked.int32(4)
0021 )