CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
VertexAssociatorByTracks_cfi.py
Go to the documentation of this file.
2 
3 VertexAssociatorByTracksESProducer = cms.ESProducer("VertexAssociatorByTracksESProducer",
4  # Matching conditions
5  R2SMatchedSimRatio = cms.double(0.3),
6  R2SMatchedRecoRatio = cms.double(0.0),
7  S2RMatchedSimRatio = cms.double(0.0),
8  S2RMatchedRecoRatio = cms.double(0.3),
9 
10  # RecoTrack selection
11  trackQuality = cms.string("highPurity"),
12 
13  # TrackingParticle selection
14  trackingParticleSelector = cms.PSet(
15  lipTP = cms.double(30.0),
16  chargedOnlyTP = cms.bool(True),
17  pdgIdTP = cms.vint32(),
18  signalOnlyTP = cms.bool(True),
19  minRapidityTP = cms.double(-2.4),
20  minHitTP = cms.int32(0),
21  ptMinTP = cms.double(0.9),
22  maxRapidityTP = cms.double(2.4),
23  tipTP = cms.double(3.5)
24  )
25 )
26 
27