Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongeun committed Jul 15, 2021
1 parent c4c9344 commit 7dc61f5
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions RecoHI/HiTracking/python/HIPixelAdaptiveVertex_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@
zSeparation = cms.double(1.0) ## 1 cm max separation between clusters
)
),
vertexCollections = {
0: dict(
label = '',
chi2cutoff = 3.0,
maxDistanceToBeam = 0.1
vertexCollections = cms.VPSet(
cms.PSet(
label = cms.string(''),
chi2cutoff = cms.double(3.0),
algorithm = cms.string('AdaptiveVertexFitter'),
useBeamConstraint = cms.bool(False),
maxDistanceToBeam = cms.double(0.1),
minNdof = cms.double(0.0)
)
}
)
)

0 comments on commit 7dc61f5

Please sign in to comment.