File indexing completed on 2024-04-06 12:19:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TESTDROP")
0004 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0005
0006 process.maxEvents = cms.untracked.PSet(
0007 input = cms.untracked.int32(20)
0008 )
0009 process.Thing = cms.EDProducer("ThingProducer")
0010
0011 process.OtherThing = cms.EDProducer("OtherThingProducer")
0012
0013 process.output = cms.OutputModule("PoolOutputModule",
0014 outputCommands = cms.untracked.vstring('drop *',
0015 'keep *_dummy_*_*'),
0016 fileName = cms.untracked.string('file:PoolDropTest.root')
0017 )
0018
0019 process.source = cms.Source("EmptySource")
0020
0021 process.p = cms.Path(process.Thing*process.OtherThing)
0022 process.ep = cms.EndPath(process.output)
0023
0024