CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/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     # Primary vertex information used for dxy calculation
00027     mainVertexLabel = cms.InputTag("offlinePrimaryVertices", ""),
00028     offlineBeamSpotLabel = cms.InputTag("offlineBeamSpot", ""),
00029 
00030     # Tracks preselection to reduce the combinatorics in PFDisplacedVertexCandidates
00031     # this cuts are repeated then in a smarter way in the PFDisplacedVertexFinder
00032     # be sure you are consistent between them.
00033     tracksSelectorParameters = cms.PSet(
00034     # selection parameters for secondary tracks
00035         nChi2_max = cms.double(5.),
00036         pt_min = cms.double(.2),
00037     # if the tracks is not a good candidate to be a secondary (dxy cut) restrict in minimal pt
00038     # this cut reduce drastically the combinatorics. It is very useful to reduce the
00039     # PFDisplacedVertex timing
00040         pt_min_prim = cms.double(.8),
00041         dxy = cms.double(.2),
00042         
00043     )                                                     
00044                                    
00045 )
00046 
00047