CMS 3D CMS Logo

customL1T_Options.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 def customise(process):
00004     
00005     process.l1GtTrigReport = cms.EDAnalyzer( "L1GtTrigReport",
00006         PrintVerbosity = cms.untracked.int32(0),
00007         PrintOutput = cms.untracked.int32(2),
00008         UseL1GlobalTriggerRecord = cms.bool( False ),
00009         L1GtRecordInputTag = cms.InputTag( "simGtDigis" )
00010     )
00011     process.L1AnalyzerEndpath = cms.EndPath (process.l1GtTrigReport)
00012     process.schedule.append(process.L1AnalyzerEndpath)
00013     
00014     process.options.wantSummary = cms.untracked.bool(True)
00015 
00016     process.MessageLogger.categories.append('L1GtTrigReport')
00017 
00018     return(process)

Generated on Tue Jun 9 17:37:39 2009 for CMSSW by  doxygen 1.5.4