CMS 3D CMS Logo

HIPixelMedianVertex_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hiPixelMedianVertex = cms.EDProducer("HIPixelMedianVtxProducer",
4  TrackCollection = cms.InputTag('hiPixel3ProtoTracks'),
5  PtMin = cms.double(0.075), # selection already made in pixel track filter
6  PeakFindThreshold = cms.uint32(100), # ntrack threshold for fitting vz around peak rather than median
7  PeakFindMaxZ = cms.double(30.0), # vz range for peak finding histogram
8  PeakFindBinsPerCm = cms.int32(10), # binning of histogram
9  FitThreshold = cms.int32(5), # minimum number of entries to attempt vz-fit
10  FitMaxZ = cms.double(0.1), # vz range (around max) of peak fitting histogram
11  FitBinsPerCm = cms.int32(500) # binning of histogram
12 )
13 
14