Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import FWCore.ParameterSet.Config as cms
process = cms.Process("MERGE")

process.source = cms.Source("PoolSource",
                            fileNames =
cms.untracked.vstring("ref_merge_prod1.root",
                      "ref_merge_prod2.root")
                            )

process.out = cms.OutputModule("PoolOutputModule",
                               fileName =
cms.untracked.string("ref_merge.root")
                               )

process.o = cms.EndPath(process.out)