CMS 3D CMS Logo

MuonME0RecHits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 me0RecHitsValidation = cms.EDAnalyzer('ME0RecHitsValidation',
5  verboseSimHit = cms.untracked.int32(1),
6  simInputLabel = cms.InputTag('g4SimHits',"MuonME0Hits"),
7  recHitInputLabel = cms.InputTag("me0RecHits"),
8  segmentInputLabel = cms.InputTag("me0Segments"),
9  # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
10  nBinGlobalZR = cms.untracked.vdouble(30,100),
11  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
12  RangeGlobalZR = cms.untracked.vdouble(525,555,60,160),
13  nBinGlobalXY = cms.untracked.int32(160),
14 )
15 
16 me0SegmentsValidation = cms.EDAnalyzer('ME0SegmentsValidation',
17  verboseSimHit = cms.untracked.int32(1),
18  segmentInputLabel = cms.InputTag("me0Segments"),
19  digiInputLabel = cms.InputTag("simMuonME0PseudoReDigis"),
20  simInputLabel = cms.InputTag('g4SimHits',"MuonME0Hits"),
21  simInputLabelST = cms.InputTag('g4SimHits'),
22  sigma_x = cms.double(0.0003), #It corresponds to phi resolution
23  sigma_y = cms.double(0.03), #It corresponds to eta resolution
24  eta_max = cms.double(2.8),
25  eta_min = cms.double(2.0),
26  pt_min = cms.double(0.0),
27  isMuonGun = cms.bool(True),
28  # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
29  nBinGlobalZR = cms.untracked.vdouble(30,100),
30  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
31  RangeGlobalZR = cms.untracked.vdouble(525,555,60,160),
32  nBinGlobalXY = cms.untracked.int32(160),
33 )
34 
35 
36 me0LocalRecoValidation = cms.Sequence( me0RecHitsValidation + me0SegmentsValidation )