Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #No Trig paths defined
0002 
0003 import FWCore.ParameterSet.Config as cms
0004 
0005 process = cms.Process("PROD")
0006 
0007 import FWCore.Framework.test.cmsExceptionsFatalOption_cff
0008 process.options = cms.untracked.PSet(
0009     wantSummary = cms.untracked.bool(True),
0010     Rethrow = FWCore.Framework.test.cmsExceptionsFatalOption_cff.Rethrow
0011 )
0012 
0013 process.maxEvents = cms.untracked.PSet(
0014     input = cms.untracked.int32(10)
0015 )
0016 
0017 process.source = cms.Source("EmptySource")
0018 
0019 process.a1 = cms.EDAnalyzer("TestResultAnalyzer",
0020     name = cms.untracked.string('a1'),
0021     dump = cms.untracked.bool(True),
0022     numbits = cms.untracked.int32(0),
0023 )
0024 
0025 process.testout1 = cms.OutputModule("TestOutputModule",
0026     expectTriggerResults = cms.untracked.bool(False),
0027     bitMask = cms.int32(0),
0028     name = cms.string('testout1')
0029 )
0030 
0031 process.e1 = cms.EndPath(process.a1)
0032 process.e2 = cms.EndPath(process.testout1)