CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SimTracker/VertexAssociation/python/VertexAssociatorByTracks_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 VertexAssociatorByTracksESProducer = cms.ESProducer("VertexAssociatorByTracksESProducer",
00004     # Matching conditions
00005     R2SMatchedSimRatio = cms.double(0.3),
00006     R2SMatchedRecoRatio = cms.double(0.0),
00007     S2RMatchedSimRatio = cms.double(0.0),
00008     S2RMatchedRecoRatio = cms.double(0.3),
00009 
00010     # RecoTrack selection
00011     trackQuality = cms.string("highPurity"),   
00012 
00013     # TrackingParticle selection
00014     trackingParticleSelector = cms.PSet(
00015         lipTP = cms.double(30.0),
00016         chargedOnlyTP = cms.bool(True),
00017         pdgIdTP = cms.vint32(),
00018         signalOnlyTP = cms.bool(True),
00019         minRapidityTP = cms.double(-2.4),
00020         minHitTP = cms.int32(0),
00021         ptMinTP = cms.double(0.9),
00022         maxRapidityTP = cms.double(2.4),
00023         tipTP = cms.double(3.5)
00024     )
00025 )
00026 
00027