CMS 3D CMS Logo

OfflinePrimaryVertices_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 offlinePrimaryVertices = cms.EDProducer("PrimaryVertexProducer",
00004     PVSelParameters = cms.PSet(
00005         maxDistanceToBeam = cms.double(0.05), ## 200 microns
00006 
00007         minVertexFitProb = cms.double(0.01) ## 1% vertex fit probability
00008 
00009     ),
00010     verbose = cms.untracked.bool(False),
00011     algorithm = cms.string('AdaptiveVertexFitter'),
00012     TkFilterParameters = cms.PSet(
00013         maxNormalizedChi2 = cms.double(5.0),
00014         minSiliconHits = cms.int32(7), ## hits > 7
00015 
00016         maxD0Significance = cms.double(5.0), ## keep most primary tracks
00017 
00018         minPt = cms.double(0.0), ## better for softish events
00019 
00020         minPixelHits = cms.int32(2) ## hits > 2
00021 
00022     ),
00023     beamSpotLabel = cms.InputTag("offlineBeamSpot"),
00024     # label of tracks to be used
00025     TrackLabel = cms.InputTag("generalTracks"),
00026     useBeamConstraint = cms.bool(False),
00027     VtxFinderParameters = cms.PSet(
00028         minTrackCompatibilityToOtherVertex = cms.double(0.01), ## 1%
00029 
00030         minTrackCompatibilityToMainVertex = cms.double(0.05), ## 5%
00031 
00032         maxNbVertices = cms.int32(0) ## search all vertices in each cluster
00033 
00034     ),
00035     TkClusParameters = cms.PSet(
00036         zSeparation = cms.double(0.1) ## 1 mm max separation betw. clusters
00037 
00038     )
00039 )
00040 
00041 

Generated on Tue Jun 9 17:46:12 2009 for CMSSW by  doxygen 1.5.4