-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a configuration where a pixel verted is done in 3d from pixel tra…
…cks - TO BE USED AT STRARTUP ONLY
- Loading branch information
Tommaso Boccali
committed
Nov 13, 2009
1 parent
1928f1f
commit 361e401
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
RecoVertex/PrimaryVertexProducer/python/OfflinePixel3DPrimaryVertices_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
pixelVertices = cms.EDProducer("PrimaryVertexProducer", | ||
PVSelParameters = cms.PSet( | ||
maxDistanceToBeam = cms.double(2), ## 2 cms in case there is no beamspot (ONLY FOR STARTUP!) | ||
|
||
minVertexFitProb = cms.double(0.01) ## 1% vertex fit probability | ||
|
||
), | ||
verbose = cms.untracked.bool(False), | ||
algorithm = cms.string('AdaptiveVertexFitter'), ## 100 is for when the beamspot is not well known (ONLY FOR STARTUP) | ||
TkFilterParameters = cms.PSet( | ||
maxNormalizedChi2 = cms.double(100.0), | ||
minSiliconHits = cms.int32(2), ## hits > 2 - for when the beamspot is not well known (ONLY FOR STARTUP) | ||
|
||
maxD0Significance = cms.double(100.0), ## 100 is for when the beamspot is not well known (ONLY FOR STARTUP) | ||
|
||
minPt = cms.double(0.0), ## better for softish events | ||
|
||
minPixelHits = cms.int32(2) ## hits > 2 | ||
|
||
), | ||
beamSpotLabel = cms.InputTag("offlineBeamSpot"), | ||
# label of tracks to be used | ||
TrackLabel = cms.InputTag("pixelTracks"), | ||
useBeamConstraint = cms.bool(False), | ||
VtxFinderParameters = cms.PSet( | ||
ptCut = cms.double(0.0), | ||
vtxFitProbCut = cms.double(0.01), ## 1% vertex fit probability | ||
trackCompatibilityToSVcut = cms.double(0.01), ## 1% | ||
trackCompatibilityToPVcut = cms.double(0.05), ## 5% | ||
maxNbOfVertices = cms.int32(0) ## search all vertices in each cluster | ||
|
||
), | ||
TkClusParameters = cms.PSet( | ||
zSeparation = cms.double(0.1) ## 1 mm max separation betw. clusters | ||
|
||
) | ||
) | ||
|
||
|