CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoVertex/PrimaryVertexProducer/python/OfflinePrimaryVerticesGap_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 offlinePrimaryVerticesGap = cms.EDProducer("PrimaryVertexProducer",
00004     PVSelParameters = cms.PSet(
00005         maxDistanceToBeam = cms.double(2) ## 0.1
00006     ),
00007     verbose = cms.untracked.bool(False),
00008     algorithm = cms.string('AdaptiveVertexFitter'),
00009     minNdof  = cms.double(0.0),
00010     TkFilterParameters = cms.PSet(
00011         algorithm=cms.string('filter'),
00012         maxNormalizedChi2 = cms.double(20.0),     # 
00013         minSiliconLayersWithHits = cms.int32(5), # >= 5
00014         minPixelLayersWithHits = cms.int32(2),   # >= 2 
00015         maxD0Significance = cms.double(100.0),     # keep most primary tracks
00016         minPt = cms.double(0.0),                 # better for softish events
00017         trackQuality = cms.string("any")
00018     ),
00019     beamSpotLabel = cms.InputTag("offlineBeamSpot"),
00020     # label of tracks to be used
00021     TrackLabel = cms.InputTag("generalTracks"),
00022     useBeamConstraint = cms.bool(False),
00023 
00024 
00025     # clustering
00026     TkClusParameters = cms.PSet(
00027         algorithm   = cms.string('gap'),
00028         TkGapClusParameters = cms.PSet( 
00029             zSeparation = cms.double(0.2) 
00030         )
00031     )
00032 )
00033 
00034