Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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.Thing = cms.EDProducer("ThingProducer")
0020 
0021 process.OtherThing = cms.EDProducer("OtherThingProducer",
0022     transient = cms.untracked.bool(True)
0023 )
0024 
0025 process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer")
0026 
0027 process.p = cms.Path(process.Thing * process.OtherThing * process.Analysis)