Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("NOCOPY")
0004 
0005 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006 
0007 process.source = cms.Source("PoolSource",
0008     fileNames = cms.untracked.vstring('file:good_a.root'),
0009     # firstRun gives a file with no runs, lumis, or events
0010     # firstEvent gives a file with no events, but with runs and lumis
0011     # firstRun = cms.untracked.uint32(100)
0012     firstEvent = cms.untracked.uint32(100)
0013 )
0014 
0015 process.out = cms.OutputModule("PoolOutputModule",
0016     fileName = cms.untracked.string('empty_a.root')
0017 )
0018 
0019 process.outp = cms.EndPath(process.out)