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  chargedOnly = True,
6  # trackingParticleSelector.pdgId = cms.vint32()
7  tip = 120,
8  lip = 280,
9  signalOnly = False,
10  minRapidity = -2.5,
11  ptMin = 1.0,
12  maxRapidity = 2.5,
13  minHit = 0
14 
15 )
16