Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("READ")
0004 
0005 process.source = cms.Source("PoolSource",
0006                             fileNames = cms.untracked.vstring("file:test_overlap_lumi.root"),
0007                             noRunLumiSort = cms.untracked.bool(True) )
0008 
0009 process.out = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("copy_test_overlap_lumi.root"))
0010 
0011 process.o = cms.EndPath(process.out)