Back to home page

Project CMSSW displayed by LXR

 
 

    


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(10)
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('keep *', 
0015         'drop *_OtherThing_*_*'),
0016     fileName = cms.untracked.string('file:FastMergeTest_1.root')
0017 )
0018 
0019 process.source = cms.Source("EmptySource",
0020     firstEvent = cms.untracked.uint32(1),
0021     firstRun = cms.untracked.uint32(100)
0022 )
0023 
0024 process.p = cms.Path(process.Thing*process.OtherThing)
0025 process.ep = cms.EndPath(process.output)
0026 
0027