Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-05-02 05:09:42

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("EARLIER")
0004 
0005 process.source = cms.Source("EmptySource")
0006 process.maxEvents.input = 3
0007 
0008 process.out = cms.OutputModule("PoolOutputModule",
0009                                fileName = cms.untracked.string("testOutputModuleSelectEventsMissingPath.root")
0010 )
0011 
0012 process.intprod = cms.EDProducer("IntProducer", ivalue=cms.int32(3))
0013 
0014 process.p = cms.Path(process.intprod)
0015 
0016 process.ep3 = cms.EndPath(process.out)
0017