File indexing completed on 2024-04-06 12:10:14
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("READ")
0004
0005 process.source = cms.Source("DQMRootSource",
0006 reScope = cms.untracked.string(""),
0007 fileNames = cms.untracked.vstring("file:dqm_file1.root",
0008 "file:dqm_file3.root",
0009 "file:dqm_file2.root"),
0010 filterOnRun = cms.untracked.uint32(1))
0011
0012 process.out = cms.OutputModule("DQMRootOutputModule",
0013 fileName = cms.untracked.string("dqm_merged_file1_file3_file2_filterOnRun1.root"),
0014 filterOnRun = cms.untracked.uint32(1))
0015 process.e = cms.EndPath(process.out)
0016
0017 process.add_(cms.Service("DQMStore"))
0018
0019