CMS 3D CMS Logo

ProducerES_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrackTriggerDataFormats_params = cms.PSet (
4 
5  UseHybrid = cms.bool( True ),
6 
7  ZHoughTransform = cms.PSet (
8 
9  NumBinsZT = cms.int32( 2 ),
10  NumBinsCot = cms.int32( 2 ),
11  NumStages = cms.int32( 5 )
12 
13  ),
14 
15  KalmanFilter = cms.PSet (
16 
17  RangeFactor = cms.double( 2.0 ) # search window of each track parameter in initial uncertainties
18 
19  ),
20 
21  DuplicateRemoval = cms.PSet (
22  WidthPhi0 = cms.int32( 12 ), # number of bist used for phi0
23  WidthQoverPt = cms.int32( 15 ), # number of bist used for qOverPt
24  WidthCot = cms.int32( 16 ), # number of bist used for cot(theta)
25  WidthZ0 = cms.int32( 12 ) # number of bist used for z0
26  ),
27 
28 )