File indexing completed on 2024-04-06 12:19:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.source = cms.Source("EmptySource",
0006 numberEventsInLuminosityBlock = cms.untracked.uint32(5))
0007
0008 process.thing = cms.EDProducer("ThingProducer", offsetDelta = cms.int32(1))
0009
0010
0011 process.sleep = cms.EDProducer("timestudy::SleepingProducer",
0012 ivalue = cms.int32(1),
0013 consumes = cms.VInputTag(),
0014 eventTimes = cms.vdouble(1.0, 0.001, 0.001))
0015
0016 process.o = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("test_overlap_lumi.root"))
0017
0018 process.p = cms.Path( process.sleep )
0019
0020 process.maxEvents.input = 20
0021
0022 process.options.numberOfThreads = 8
0023
0024 process.e = cms.EndPath(process.o, cms.Task(process.thing))