CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/RecoVertex/AdaptiveVertexFinder/python/inclusiveVertexFinder_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 inclusiveVertexFinder  = cms.EDProducer("InclusiveVertexFinder",
00004        beamSpot = cms.InputTag("offlineBeamSpot"),
00005        primaryVertices = cms.InputTag("offlinePrimaryVertices"),
00006        tracks = cms.InputTag("generalTracks"),
00007        minHits = cms.uint32(7),
00008        minPt = cms.double(0.8),
00009        seedMin3DIPSignificance = cms.double(1.5),
00010        seedMin3DIPValue = cms.double(0.005),
00011        clusterMaxDistance = cms.double(0.05), #500um
00012        clusterMaxSignificance = cms.double(3.0), #3 sigma
00013        clusterScale = cms.double(10), #10x the IP
00014        clusterMinAngleCosine = cms.double(0.0), # only forward decays
00015        vertexMinAngleCosine = cms.double(0.98), # scalar prod direction of tracks and flight dir
00016        vertexMinDLen2DSig = cms.double(2.5), #2.5 sigma
00017        vertexMinDLenSig = cms.double(0.5), #0.5 sigma
00018 
00019        vertexReco = cms.PSet(
00020                finder = cms.string('avr'),
00021                primcut = cms.double(1.0),
00022                seccut = cms.double(3),
00023                smoothing = cms.bool(True)
00024        )
00025 
00026 
00027 )
00028 
00029