CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PixelVertexes_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 pixelVertices = cms.EDProducer("PixelVertexProducer",
6  WtAverage = cms.bool(True),
7  ZOffset = cms.double(5.0),
8  beamSpot = cms.InputTag("offlineBeamSpot"),
9  Verbosity = cms.int32(0),
10  UseError = cms.bool(True),
11  TrackCollection = cms.InputTag("pixelTracks"),
12  ZSeparation = cms.double(0.05),
13  NTrkMin = cms.int32(2),
14  Method2 = cms.bool(True),
15  Finder = cms.string('DivisiveVertexFinder'),
16  PtMin = cms.double(1.0),
17  PVcomparer = cms.PSet(
18  refToPSet_ = cms.string('pvClusterComparer')
19  )
20 )
21 
22