Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:31

0001 # Test of options when a looper is in the job
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 )