CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoHI/HiTracking/python/HIPixelMedianVertex_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 hiPixelMedianVertex = cms.EDProducer("HIPixelMedianVtxProducer",
00004     TrackCollection = cms.InputTag('hiPixel3ProtoTracks'),
00005     PtMin = cms.double(0.075),           # selection already made in pixel track filter
00006     PeakFindThreshold = cms.uint32(100), # ntrack threshold for fitting vz around peak rather than median
00007     PeakFindMaxZ = cms.double(30.0),     # vz range for peak finding histogram
00008     PeakFindBinsPerCm = cms.int32(10),   # binning of histogram
00009     FitThreshold = cms.int32(5),         # minimum number of entries to attempt vz-fit
00010     FitMaxZ = cms.double(0.1),           # vz range (around max) of peak fitting histogram
00011     FitBinsPerCm = cms.int32(500)        # binning of histogram
00012 )
00013 
00014