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("TESTBOTHFILES")
0009 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0010
0011 process.OtherThing = cms.EDProducer("OtherThingProducer")
0012
0013 process.source = cms.Source("PoolSource",
0014 secondaryFileNames = cms.untracked.vstring("file:PoolInputOther.root"),
0015 fileNames = cms.untracked.vstring("file:PoolInput2FileTest.root")
0016 )
0017
0018
0019 process.p = cms.Path(process.OtherThing)
0020
0021
0022