CMS 3D CMS Logo

tpSelection_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import PhysicsTools.RecoAlgos.trackingParticleSelector_cfi
4 tpSelection = PhysicsTools.RecoAlgos.trackingParticleSelector_cfi.trackingParticleSelector.clone()
5 tpSelection.chargedOnly = True
6 # trackingParticleSelector.pdgId = cms.vint32()
7 tpSelection.tip = 120
8 tpSelection.lip = 280
9 tpSelection.signalOnly = False
10 tpSelection.minRapidity = -2.5
11 tpSelection.ptMin = 1.
12 tpSelection.maxRapidity = 2.5
13 tpSelection.minHit = 0
14 
15