CMS 3D CMS Logo

pixelTracksHitSeeds_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pixelTracksHitSeeds = cms.EDProducer("CAHitQuadrupletEDProducer",
4  CAHardPtCut = cms.double(0.0),
5  CAPhiCut = cms.double(0.2),
6  CAThetaCut = cms.double(0.0012),
7  SeedComparitorPSet = cms.PSet(
8  ComponentName = cms.string('LowPtClusterShapeSeedComparitor'),
9  clusterShapeCacheSrc = cms.InputTag("siPixelClusterShapeCache"),
10  clusterShapeHitFilter = cms.string('ClusterShapeHitFilter')
11  ),
12  doublets = cms.InputTag("pixelTracksHitDoublets"),
13  extraHitRPhitolerance = cms.double(0.032),
14  fitFastCircle = cms.bool(True),
15  fitFastCircleChi2Cut = cms.bool(True),
16  maxChi2 = cms.PSet(
17  enabled = cms.bool(True),
18  pt1 = cms.double(0.7),
19  pt2 = cms.double(2.0),
20  value1 = cms.double(200.0),
21  value2 = cms.double(50.0)
22  ),
23  mightGet = cms.optional.untracked.vstring,
24  useBendingCorrection = cms.bool(True)
25 )