CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonEfficiencyAnalyzer_cfi.py
Go to the documentation of this file.
2 
4 
5 muonEfficiencyAnalyzer = cms.EDAnalyzer("EfficiencyAnalyzer",
6  MuonServiceProxy,
7  MuonCollection = cms.InputTag("muons"),
8  TrackCollection = cms.InputTag("generalTracks"),
9  VertexLabel = cms.InputTag("offlinePrimaryVertices"),
10  BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
11 
12  doPrimaryVertexCheck = cms.bool( True ),
13 
14  ptBin = cms.int32(10),
15  ptMax = cms.double(100),
16  ptMin = cms.double(10),
17 
18  etaBin = cms.int32(8),
19  etaMax = cms.double(2.5),
20  etaMin = cms.double(-2.5),
21 
22  phiBin = cms.int32(8),
23  phiMax = cms.double(3.2),
24  phiMin = cms.double(-3.2),
25 
26  vtxBin = cms.int32(10),
27  vtxMax = cms.double(40.5),
28  vtxMin = cms.double(0.5)
29  )