CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelTripletHLTGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # moving to the block. Will delete the PSet once transition is done
4 PixelTripletHLTGenerator = cms.PSet(
5  maxElement = cms.uint32(100000),
6  useBending = cms.bool(True),
7  useFixedPreFiltering = cms.bool(False),
8  ComponentName = cms.string('PixelTripletHLTGenerator'),
9  extraHitRPhitolerance = cms.double(0.032),
10  extraHitRZtolerance = cms.double(0.037),
11  useMultScattering = cms.bool(True),
12  phiPreFiltering = cms.double(0.3),
13  SeedComparitorPSet = cms.PSet(
14  ComponentName = cms.string('none')
15  )
16 )
17 
18 import RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi
19 PixelTripletHLTGeneratorWithFilter = PixelTripletHLTGenerator.clone()
20 PixelTripletHLTGeneratorWithFilter.SeedComparitorPSet = RecoPixelVertexing.PixelLowPtUtilities.LowPtClusterShapeSeedComparitor_cfi.LowPtClusterShapeSeedComparitor
21 
22