Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:51

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 firstStepPrimaryVerticesUnsorted = cms.EDProducer("PrimaryVertexProducer",
0004     TkClusParameters = cms.PSet(
0005         TkDAClusParameters = cms.PSet(
0006             Tmin = cms.double(2.0),
0007             Tpurge = cms.double(2.0),
0008             Tstop = cms.double(0.5),
0009             coolingFactor = cms.double(0.6),
0010             d0CutOff = cms.double(3.0),
0011             dzCutOff = cms.double(3.0),
0012             uniquetrkweight = cms.double(0.8),
0013             vertexSize = cms.double(0.006),
0014             zmerge = cms.double(0.01)
0015         ),
0016         algorithm = cms.string('DA_vect')
0017     ),
0018     TkFilterParameters = cms.PSet(
0019         algorithm = cms.string('filter'),
0020         maxD0Significance = cms.double(4.0),
0021         maxEta = cms.double(4.0),
0022         maxNormalizedChi2 = cms.double(10.0),
0023         minPixelLayersWithHits = cms.int32(2),
0024         minPt = cms.double(0.9),
0025         minSiliconLayersWithHits = cms.int32(5),
0026         trackQuality = cms.string('any')
0027     ),
0028     TrackLabel = cms.InputTag("initialStepTracks"),
0029     beamSpotLabel = cms.InputTag("hltOnlineBeamSpot"),
0030     verbose = cms.untracked.bool(False),
0031     vertexCollections = cms.VPSet(cms.PSet(
0032         algorithm = cms.string('AdaptiveVertexFitter'),
0033         chi2cutoff = cms.double(2.5),
0034         label = cms.string(''),
0035         maxDistanceToBeam = cms.double(1.0),
0036         minNdof = cms.double(0.0),
0037         useBeamConstraint = cms.bool(False)
0038     ))
0039 )