File indexing completed on 2024-04-06 12:12:39
0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("MERGE")
0003
0004 process.source = cms.Source("PoolSource",
0005 fileNames = cms.untracked.vstring("file:ref_merge_prod1.root",
0006 "file:ref_merge_prod2.root")
0007 )
0008
0009 process.out = cms.OutputModule("PoolOutputModule",
0010 fileName = cms.untracked.string("ref_merge.root")
0011 )
0012
0013 process.tester = cms.EDAnalyzer("OtherThingAnalyzer",
0014 other = cms.untracked.InputTag("d","testUserTag"))
0015
0016 process.o = cms.EndPath(process.out+process.tester)
0017