CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoParticleFlow/PFTracking/python/particleFlowDisplacedVertexCandidate_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 particleFlowDisplacedVertexCandidate = cms.EDProducer("PFDisplacedVertexCandidateProducer",
00004 
00005 
00006     # The track collection use for the fitting. May be any collection.
00007     # The only condition is that it shall contain the hit pattern information
00008     trackCollection  = cms.InputTag("generalTracks"),
00009 
00010     # verbosity 
00011     verbose = cms.untracked.bool(False),
00012                                    
00013     # Debug flag
00014     debug = cms.untracked.bool(False),
00015 
00016     # maximum dca distance for two tracks to be linked                                   
00017     dcaCut = cms.double(0.5),
00018 
00019     # minimum distance of secondary vertex with respect to the primary
00020     primaryVertexCut = cms.double(2.2),
00021 
00022     # maximum distance between the DCA Point and the inner hit of the track
00023     # not used for the moment
00024     dcaPInnerHitCut = cms.double(1000.0),
00025 
00026     # Tracks preselection to reduce the combinatorics in PFDisplacedVertexCandidates
00027     # this cuts are repeated then in a smarter way in the PFDisplacedVertexFinder
00028     # be sure you are consistent between them.
00029     tracksSelectorParameters = cms.PSet(
00030         nChi2_max = cms.double(5.),
00031         pt_min = cms.double(.2),
00032     )
00033                                    
00034 )
00035 
00036