File indexing completed on 2024-04-06 12:19:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("MERGE")
0004 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0005
0006 process.output = cms.OutputModule("PoolOutputModule",
0007 fileName = cms.untracked.string('file:PoolOutputEmptyEventsMergeTest.root')
0008 )
0009
0010 process.source = cms.Source("PoolSource",
0011 fileNames = cms.untracked.vstring("file:PoolOutputEmptyEventsTest.root",
0012 "file:PoolOutputTest.root"))
0013 process.ep = cms.EndPath(process.output)