CMS 3D CMS Logo

L1TRPCTF_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 l1tRpctf = DQMEDAnalyzer('L1TRPCTF',
5  rpctfSource = cms.InputTag("l1GtUnpack"),
6  rpctfRPCDigiSource = cms.InputTag("muonRPCDigis"),
7  output_dir = cms.untracked.string('L1T/L1TRPCTF'),
8  rateUpdateTime = cms.int32(20), # update after 20 seconds
9  rateBinSize = cms.int32(60), # in seconds
10  rateNoOfBins = cms.int32(3000),
11  verbose = cms.untracked.bool(False),
12  DQMStore = cms.untracked.bool(True)
13 )
14 
15