Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 unsortedOfflinePrimaryVertices = 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("generalTracks"),
0029     beamSpotLabel = cms.InputTag("hltOnlineBeamSpot"),
0030     verbose = cms.untracked.bool(False),
0031     vertexCollections = cms.VPSet(
0032         cms.PSet(
0033             algorithm = cms.string('AdaptiveVertexFitter'),
0034             chi2cutoff = cms.double(2.5),
0035             label = cms.string(''),
0036             maxDistanceToBeam = cms.double(1.0),
0037             minNdof = cms.double(0.0),
0038             useBeamConstraint = cms.bool(False)
0039         ),
0040         cms.PSet(
0041             algorithm = cms.string('AdaptiveVertexFitter'),
0042             chi2cutoff = cms.double(2.5),
0043             label = cms.string('WithBS'),
0044             maxDistanceToBeam = cms.double(1.0),
0045             minNdof = cms.double(2.0),
0046             useBeamConstraint = cms.bool(True)
0047         )
0048     )
0049 )