File indexing completed on 2024-04-06 12:19:08
0001
0002
0003
0004
0005
0006 import FWCore.ParameterSet.Config as cms
0007
0008 process = cms.Process("TEST2ND")
0009 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0010
0011
0012
0013
0014
0015
0016 process.output = cms.OutputModule("PoolOutputModule",
0017 outputCommands = cms.untracked.vstring('keep *',
0018 'drop *_Thing_*_*'),
0019 fileName = cms.untracked.string('PoolInput2FileTest.root')
0020 )
0021
0022 process.OtherThing = cms.EDProducer("OtherThingProducer")
0023
0024 process.source = cms.Source("PoolSource",
0025 fileNames = cms.untracked.vstring("file:PoolInputOther.root") )
0026
0027
0028 process.p = cms.Path(process.OtherThing)
0029 process.ep = cms.EndPath(process.output)
0030
0031