1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import FWCore.ParameterSet.Config as cms
hltPhase2L3MuonHighPtTripletStepHitTriplets = cms.EDProducer("CAHitTripletEDProducer",
CAHardPtCut = cms.double(0.5),
CAPhiCut = cms.double(0.06),
CAThetaCut = cms.double(0.003),
SeedComparitorPSet = cms.PSet(
ComponentName = cms.string('LowPtClusterShapeSeedComparitor'),
clusterShapeCacheSrc = cms.InputTag("hltSiPixelClusterShapeCache"),
clusterShapeHitFilter = cms.string('ClusterShapeHitFilter')
),
doublets = cms.InputTag("hltPhase2L3MuonHighPtTripletStepHitDoublets"),
extraHitRPhitolerance = cms.double(0.032),
maxChi2 = cms.PSet(
enabled = cms.bool(True),
pt1 = cms.double(0.8),
pt2 = cms.double(8),
value1 = cms.double(100),
value2 = cms.double(6)
),
mightGet = cms.optional.untracked.vstring,
useBendingCorrection = cms.bool(True)
)
|