test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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(80,120),
11  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
12  RangeGlobalZR = cms.untracked.vdouble(515,555,20,160),
13  nBinGlobalXY = cms.untracked.int32(360),
14 )
15 
16 me0SegmentsValidation = cms.EDAnalyzer('ME0SegmentsValidation',
17  verboseSimHit = cms.untracked.int32(1),
18  segmentInputLabel = cms.InputTag("me0Segments"),
19  # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
20  nBinGlobalZR = cms.untracked.vdouble(80,120),
21  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
22  RangeGlobalZR = cms.untracked.vdouble(515,555,20,160),
23  nBinGlobalXY = cms.untracked.int32(360),
24 )
25 
26 
27 me0LocalRecoValidation = cms.Sequence( me0RecHitsValidation + me0SegmentsValidation )