Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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 
0018 process.source = cms.Source("EmptySource")
0019 
0020 process.Thing = cms.EDProducer("ThingProducer")
0021 
0022 process.OtherThing = cms.EDProducer("OtherThingProducer")
0023 
0024 process.Analysis = cms.EDAnalyzer("OtherThingAnalyzer")
0025 
0026 process.p = cms.Path(process.Thing * process.OtherThing * process.Analysis)
0027 
0028