File indexing completed on 2024-04-06 12:31:53
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("TEST")
0004
0005 process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring("file:stat_sender_b.root", "file:stat_sender_c.root", "file:stat_sender_d.root", "file:stat_sender_e.root"),
0006 duplicateCheckMode = cms.untracked.string('noDuplicateCheck'),
0007 inputCommands = cms.untracked.vstring('drop *_*_beginRun_*', 'drop *_*_endRun_*', 'drop *_*_beginLumi_*', 'drop *_*_endLumi_*')
0008 )
0009
0010 process.add_(cms.Service("StatisticsSenderService", debug = cms.untracked.bool(True)))