CMS 3D CMS Logo

MuonME0Digis_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 me0DigiValidation = cms.EDAnalyzer('ME0DigisValidation',
5  verboseSimHit = cms.untracked.int32(1),
6  simInputLabel = cms.InputTag('g4SimHits',"MuonME0Hits"),
7  digiInputLabel = cms.InputTag("simMuonME0PseudoReDigis"),
8  sigma_x = cms.double(0.0003), #It corresponds to phi resolution
9  sigma_y = cms.double(0.03), #It corresponds to eta resolution
10  # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
11  nBinGlobalZR = cms.untracked.vdouble(30,100),
12  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
13  RangeGlobalZR = cms.untracked.vdouble(525,555,60,160),
14  nBinGlobalXY = cms.untracked.int32(160),
15 )