Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:54:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 totemT2DQMSource = DQMEDAnalyzer('TotemT2DQMSource',
0005     digisTag = cms.InputTag('totemT2Digis', 'TotemT2'),
0006     rechitsTag = cms.InputTag('totemT2RecHits'),
0007     nbinsx = cms.uint32(25),
0008     nbinsy = cms.uint32(25),
0009     windowsNum = cms.uint32(4),
0010 
0011     perLSsaving = cms.untracked.bool(False), #driven by DQMServices/Core/python/DQMStore_cfi.py
0012 )