Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-21 04:46:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltPhase2L3MuonHighPtTripletStepHitTriplets = cms.EDProducer("CAHitTripletEDProducer",
0004     CAHardPtCut = cms.double(0.5),
0005     CAPhiCut = cms.double(0.06),
0006     CAThetaCut = cms.double(0.003),
0007     SeedComparitorPSet = cms.PSet(
0008         ComponentName = cms.string('LowPtClusterShapeSeedComparitor'),
0009         clusterShapeCacheSrc = cms.InputTag("hltSiPixelClusterShapeCache"),
0010         clusterShapeHitFilter = cms.string('ClusterShapeHitFilter')
0011     ),
0012     doublets = cms.InputTag("hltPhase2L3MuonHighPtTripletStepHitDoublets"),
0013     extraHitRPhitolerance = cms.double(0.032),
0014     maxChi2 = cms.PSet(
0015         enabled = cms.bool(True),
0016         pt1 = cms.double(0.8),
0017         pt2 = cms.double(8),
0018         value1 = cms.double(100),
0019         value2 = cms.double(6)
0020     ),
0021     mightGet = cms.optional.untracked.vstring,
0022     useBendingCorrection = cms.bool(True)
0023 )