Skip to content

Commit

Permalink
Update HIBestVertexSequences_cff.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongeun authored Dec 16, 2020
1 parent 72e90d3 commit ebfd5f0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions RecoHI/HiTracking/python/HIBestVertexSequences_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
hiOfflinePrimaryVertices=hiPixelAdaptiveVertex.clone( # vertexing run AFTER tracking
TrackLabel = "hiGeneralTracks",

TkFilterParameters = dict(
algorithm = 'filterWithThreshold',
maxNormalizedChi2 = 5.0,
minPixelLayersWithHits = 3, #0 missing pix hit (Run 1 pixels)
minSiliconLayersWithHits = 5, #at least 8 (3pix+5strip) hits total
maxD0Significance = 3.0, #default is 5.0 in pp; 3.0 here suppresses split vtxs
minPt = 0.0,
maxEta = 100.,
trackQuality = "any",
numTracksThreshold = 2
TkFilterParameters = cms.PSet(
algorithm = cms.string('filterWithThreshold'),
maxNormalizedChi2 = cms.double(5.0),
minPixelLayersWithHits = cms.int32(3), #0 missing pix hit (Run 1 pixels)
minSiliconLayersWithHits = cms.int32(5), #at least 8 (3pix+5strip) hits total
maxD0Significance = cms.double(3.0), #default is 5.0 in pp; 3.0 here suppresses split vtxs
minPt = cms.double(0.0),
maxEta = cms.double(100.),
trackQuality = cms.string("any"),
numTracksThreshold = cms.int32(2)
)
)
from Configuration.Eras.Modifier_trackingPhase1_cff import trackingPhase1
Expand Down

0 comments on commit ebfd5f0

Please sign in to comment.