Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 particleFlowDisplacedVertexCandidate = cms.EDProducer("PFDisplacedVertexCandidateProducer",
00004
00005
00006
00007
00008 trackCollection = cms.InputTag("generalTracks"),
00009
00010
00011 verbose = cms.untracked.bool(False),
00012
00013
00014 debug = cms.untracked.bool(False),
00015
00016
00017 dcaCut = cms.double(0.5),
00018
00019
00020 primaryVertexCut = cms.double(2.2),
00021
00022
00023
00024 dcaPInnerHitCut = cms.double(1000.0),
00025
00026
00027 mainVertexLabel = cms.InputTag("offlinePrimaryVertices", ""),
00028 offlineBeamSpotLabel = cms.InputTag("offlineBeamSpot", ""),
00029
00030
00031
00032
00033 tracksSelectorParameters = cms.PSet(
00034
00035 nChi2_max = cms.double(5.),
00036 pt_min = cms.double(.2),
00037
00038
00039
00040 pt_min_prim = cms.double(.8),
00041 dxy = cms.double(.2),
00042
00043 )
00044
00045 )
00046
00047