Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:47:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 
0005 process.load("FWCore.Framework.test.cmsExceptionsFatal_cff")
0006 
0007 # The following two lines reduce the clutter of repeated printouts
0008 # of the same exception message.
0009 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0010 
0011 process.MessageLogger.cerr.enableStatistics = False
0012 
0013 
0014 process.maxEvents = cms.untracked.PSet(
0015     input = cms.untracked.int32(2)
0016 )
0017 process.source = cms.Source("EmptySource")
0018 
0019 process.ints = cms.EDProducer("IntProducer",
0020     ivalue = cms.int32(2112)
0021 )
0022 
0023 process.maker = cms.EDProducer("ProdigalProducer",
0024     label = cms.string('ints')
0025 )
0026 
0027 process.analyzer = cms.EDAnalyzer("ProdigalAnalyzer")
0028 
0029 process.p = cms.Path(process.ints * process.maker * process.analyzer)