File indexing completed on 2024-04-06 12:12:29
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("Test")
0004
0005 process.source = cms.Source("EmptySource")
0006
0007 process.maxEvents.input = 1
0008
0009 process.b = cms.EDProducer("edmtest::one::WatchRunsProducer",
0010 transitions = cms.int32(3))
0011 process.c = cms.EDAnalyzer("TestESDummyDataAnalyzer",
0012 expected = cms.int32(5))
0013
0014 process.add_(cms.ESProducer("LoadableDummyProvider",
0015 value = cms.untracked.int32(5)))
0016
0017 process.essource = cms.ESSource("EmptyESSource",
0018 recordName = cms.string('DummyRecord'),
0019 iovIsRunNotTime = cms.bool(True),
0020 firstValid = cms.vuint32(1)
0021 )
0022
0023 process.p2 = cms.Path(process.b)
0024 process.p3 = cms.Path(process.c)
0025
0026
0027
0028 process.add_(cms.Service("ConcurrentModuleTimer", padding = cms.untracked.uint32(2), trackGlobalBeginRun = cms.untracked.bool(True)))