CMS 3D CMS Logo

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 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
8 
9 TrackEffClient = DQMEDHarvester("TrackEfficiencyClient",
10 
11  FolderName = cms.string('Track/Efficiencies'),
12  AlgoName = cms.string('CTF'),
13  trackEfficiency = cms.bool(True),
14 
15  effXBin = cms.int32(50),
16  effXMin = cms.double(-100),
17  effXMax = cms.double(100),
18 
19  effYBin = cms.int32(50),
20  effYMin = cms.double(-100),
21  effYMax = cms.double(100),
22 
23  effZBin = cms.int32(50),
24  effZMin = cms.double(-500),
25  effZMax = cms.double(500),
26 
27  effEtaBin = cms.int32(50),
28  effEtaMin = cms.double(-3.2),
29  effEtaMax = cms.double(3.2),
30 
31  effPhiBin = cms.int32(50),
32  effPhiMin = cms.double(-3.2),
33  effPhiMax = cms.double(0.),
34 
35  effD0Bin = cms.int32(50),
36  effD0Min = cms.double(-100),
37  effD0Max = cms.double(100),
38 
39  effCompatibleLayersBin = cms.int32(10),
40  effCompatibleLayersMin = cms.double(0),
41  effCompatibleLayersMax = cms.double(30),
42 
43 )
44 
45