CMS 3D CMS Logo

CAHitQuadrupletGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 CAHitQuadrupletGenerator = cms.PSet(
4  ComponentName = cms.string("CAHitQuadrupletGenerator"),
5  SeedingLayers = cms.InputTag("seedingLayersEDProducer"),
6  extraHitRPhitolerance = cms.double(0.1),
7  maxChi2 = cms.PSet(
8  pt1 = cms.double(0.2), pt2 = cms.double(1.5),
9  value1 = cms.double(500), value2 = cms.double(50),
10  enabled = cms.bool(True),
11  ),
12  fitFastCircle = cms.bool(False),
13  fitFastCircleChi2Cut = cms.bool(False),
14  useBendingCorrection = cms.bool(False),
15  CAThetaCut = cms.double(0.00125),
16  CAPhiCut = cms.double(10),
17  CAHardPtCut = cms.double(0),
18  CAOnlyOneLastHitPerLayerFilter= cms.bool(False)
19 )