CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackEfficiencyClient_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # All/OuterSurface/InnerSurface/ImpactPoint/default(eff)
4 #
5 
6 import FWCore.ParameterSet.Config as cms
7 
8 TrackEffClient = cms.EDAnalyzer("TrackEfficiencyClient",
9 
10  FolderName = cms.string('Track/Efficiencies'),
11  AlgoName = cms.string('CTF'),
12  trackEfficiency = cms.bool(True),
13 
14  effXBin = cms.int32(50),
15  effXMin = cms.double(-100),
16  effXMax = cms.double(100),
17 
18  effYBin = cms.int32(50),
19  effYMin = cms.double(-100),
20  effYMax = cms.double(100),
21 
22  effZBin = cms.int32(50),
23  effZMin = cms.double(-500),
24  effZMax = cms.double(500),
25 
26  effEtaBin = cms.int32(50),
27  effEtaMin = cms.double(-3.2),
28  effEtaMax = cms.double(3.2),
29 
30  effPhiBin = cms.int32(50),
31  effPhiMin = cms.double(-3.2),
32  effPhiMax = cms.double(0.),
33 
34  effD0Bin = cms.int32(50),
35  effD0Min = cms.double(-100),
36  effD0Max = cms.double(100),
37 
38  effCompatibleLayersBin = cms.int32(10),
39  effCompatibleLayersMin = cms.double(0),
40  effCompatibleLayersMax = cms.double(30),
41 
42 )
43 
44