CMS 3D CMS Logo

PixelTripletHLTGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from Configuration.Eras.Modifier_trackingPhase2PU140_cff import trackingPhase2PU140
4 
5 # moving to the block. Will delete the PSet once transition is done
6 PixelTripletHLTGenerator = cms.PSet(
7  maxElement = cms.uint32(100000),
8  useBending = cms.bool(True),
9  useFixedPreFiltering = cms.bool(False),
10  ComponentName = cms.string('PixelTripletHLTGenerator'),
11  extraHitRPhitolerance = cms.double(0.032),
12  extraHitRZtolerance = cms.double(0.037),
13  useMultScattering = cms.bool(True),
14  phiPreFiltering = cms.double(0.3),
15  SeedComparitorPSet = cms.PSet(
16  ComponentName = cms.string('none')
17  )
18 )
19 
20 # do thy make any difference anywhere?
21 trackingPhase2PU140.toModify(PixelTripletHLTGenerator,
22  extraHitRPhitolerance = cms.double(0.016),
23  extraHitRZtolerance = cms.double(0.020)
24 )
25 
26 import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
27 PixelTripletHLTGeneratorWithFilter = PixelTripletHLTGenerator.clone()
28 PixelTripletHLTGeneratorWithFilter.SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor.clone()
29 
30