File indexing completed on 2024-04-19 02:16:42
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("MERGE")
0004
0005 process.source = cms.Source("PoolSource",
0006 fileNames = cms.untracked.vstring("file:refconsistency_1.root",
0007 "file:refconsistency_10.root")
0008 )
0009
0010 process.out = cms.OutputModule("PoolOutputModule",
0011 fileName = cms.untracked.string("refconsistency_merge.root")
0012 )
0013
0014 process.tester = cms.EDAnalyzer("OtherThingAnalyzer",
0015 other = cms.untracked.InputTag("otherThing","testUserTag")
0016 )
0017
0018 process.o = cms.EndPath(process.out+process.tester)
0019