CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
trackingParticleSelector_cfi.py
Go to the documentation of this file.
2 
3 trackingParticleSelector = cms.EDFilter("TrackingParticleSelector",
4  src = cms.InputTag("mix","MergedTrackTruth"),
5  chargedOnly = cms.bool(True),
6  stableOnly = cms.bool(False),
7  pdgId = cms.vint32(),
8  tip = cms.double(3.5),
9  signalOnly = cms.bool(True),
10  minRapidity = cms.double(-2.4),
11  lip = cms.double(30.0),
12  ptMin = cms.double(0.9),
13  maxRapidity = cms.double(2.4),
14  minHit = cms.int32(0)
15 )
16 
17 
18