File indexing completed on 2024-04-06 12:12:30
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.source = cms.Source("EmptySource")
0006
0007 process.intMaker = cms.EDProducer("edmtest::FailingInRunProducer")
0008
0009 process.consumer = cms.EDAnalyzer("edmtest::IntFromRunConsumingAnalyzer",
0010 getFromModule = cms.untracked.InputTag("intMaker"))
0011
0012 process.p = cms.Path(process.consumer,cms.Task(process.intMaker))
0013
0014 process.options = cms.untracked.PSet(numberOfThreads = cms.untracked.uint32(2),
0015 numberOfStreams = cms.untracked.uint32(1))