test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonGEMHits_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 gemSimHitValidation = cms.EDAnalyzer('GEMHitsValidation',
5  verboseSimHit = cms.untracked.int32(1),
6  simInputLabel = cms.InputTag('g4SimHits',"MuonGEMHits"),
7  # st1, st2_short, st2_long of xbin, st1,st2_short,st2_long of ybin
8  nBinGlobalZR = cms.untracked.vdouble(200,200,200,110,140,210),
9  # st1 xmin, xmax, st2_short xmin, xmax, st2_long xmin, xmax, st1 ymin, ymax...
10  RangeGlobalZR = cms.untracked.vdouble(564,572,786,794,794,802,130,240,190,330,120,330),
11  nBinGlobalXY = cms.untracked.int32(720),
12  detailPlot = cms.bool(False),
13 )
14 
15 gemSimTrackValidation = cms.EDAnalyzer('GEMSimTrackMatch',
16  verboseSimHit = cms.untracked.int32(1),
17  simInputLabel = cms.untracked.string('g4SimHits'),
18  simMuOnlyGEM = cms.untracked.bool(True),
19  discardEleHitsGEM = cms.untracked.bool(True),
20  simTrackCollection = cms.InputTag('g4SimHits'),
21  simVertexCollection = cms.InputTag('g4SimHits'),
22  gemMinPt = cms.untracked.double(5.0),
23  gemMinEta = cms.untracked.double(1.55),
24  gemMaxEta = cms.untracked.double(2.45),
25  detailPlot = cms.bool(False),
26 )
27 
28 gemSimValidation = cms.Sequence( gemSimHitValidation+gemSimTrackValidation)