CMS 3D CMS Logo

PixelQuadrupletGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PixelQuadrupletGenerator = cms.PSet(
4  ComponentName = cms.string("PixelQuadrupletGenerator"),
5  extraHitRZtolerance = cms.double(0.1),
6  extraHitRPhitolerance = cms.double(0.1),
7  extraPhiTolerance = cms.PSet(
8  pt1 = cms.double(0.1) , pt2 = cms.double(0.1),
9  value1 = cms.double(999.), value2 = cms.double(0.15),
10  enabled = cms.bool(False),
11  ),
12  maxChi2 = cms.PSet(
13  pt1 = cms.double(0.2), pt2 = cms.double(1.5),
14  value1 = cms.double(500), value2 = cms.double(50),
15  enabled = cms.bool(True),
16  ),
17  fitFastCircle = cms.bool(False),
18  fitFastCircleChi2Cut = cms.bool(False),
19  useBendingCorrection = cms.bool(False),
20 )