CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/RecoVertex/PrimaryVertexProducer/python/OfflinePixel3DPrimaryVertices_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pixelVertices = cms.EDProducer("PrimaryVertexProducer",
00004 
00005     verbose = cms.untracked.bool(False),
00006     TrackLabel = cms.InputTag("pixelTracks"),
00007     beamSpotLabel = cms.InputTag("offlineBeamSpot"),
00008                                         
00009     TkFilterParameters = cms.PSet(
00010         algorithm=cms.string('filter'),
00011         maxNormalizedChi2 = cms.double(100.0),
00012         minPixelLayersWithHits=cms.int32(3),
00013         minSiliconLayersWithHits = cms.int32(3),
00014         maxD0Significance = cms.double(100.0), 
00015         minPt = cms.double(0.0),
00016         trackQuality = cms.string("any")
00017     ),
00018 
00019     TkClusParameters = cms.PSet(
00020         algorithm   = cms.string("gap"),
00021         TkGapClusParameters = cms.PSet(
00022             zSeparation = cms.double(0.1)        # 1 mm max separation betw.tracks inside clusters
00023         )
00024     ),
00025 
00026     vertexCollections = cms.VPSet(
00027      [cms.PSet(label=cms.string(""),
00028                algorithm=cms.string("AdaptiveVertexFitter"),
00029                minNdof=cms.double(2.0),
00030                useBeamConstraint = cms.bool(False),
00031                maxDistanceToBeam = cms.double(2.0)
00032                )
00033       ]
00034     )
00035                                         
00036 
00037                                         
00038 )
00039 
00040