File indexing completed on 2024-04-06 12:19:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TESTPROD")
0004 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0005
0006 process.maxEvents = cms.untracked.PSet(
0007 input = cms.untracked.int32(15)
0008 )
0009 process.Thing = cms.EDProducer("ThingProducer")
0010
0011 process.OtherThing = cms.EDProducer("OtherThingProducer")
0012
0013 process.AOtherThing = cms.EDProducer("OtherThingProducer",
0014 thingTag = cms.InputTag('Thing')
0015 )
0016 process.ZOtherThing = cms.EDProducer("OtherThingProducer",
0017 thingTag = cms.InputTag('Thing')
0018 )
0019
0020 process.output = cms.OutputModule("PoolOutputModule",
0021 outputCommands = cms.untracked.vstring('keep *',
0022 'drop *_Thing_*_*'),
0023 fileName = cms.untracked.string('file:FastMergeTest_ancestor2.root')
0024 )
0025
0026 process.source = cms.Source("EmptySource",
0027 firstEvent = cms.untracked.uint32(100),
0028 firstRun = cms.untracked.uint32(200)
0029 )
0030
0031 process.p = cms.Path(process.Thing*(process.OtherThing+process.AOtherThing+process.ZOtherThing))
0032 process.ep = cms.EndPath(process.output)
0033
0034