CMS 3D CMS Logo

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