Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 
0004 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0005 me0HitsValidation = DQMEDAnalyzer('ME0HitsValidation',
0006     verboseSimHit = cms.untracked.int32(1),
0007     simInputLabel = cms.InputTag('g4SimHits',"MuonME0Hits"),
0008     # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
0009     nBinGlobalZR = cms.untracked.vdouble(30,100),
0010     # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
0011     RangeGlobalZR = cms.untracked.vdouble(525,555,60,160),
0012     nBinGlobalXY = cms.untracked.int32(160),
0013 )