CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/PhysicsTools/RecoAlgos/python/trackingParticleSelector_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackingParticleSelector = cms.EDFilter("TrackingParticleSelector",
00004     src = cms.InputTag("mergedtruth","MergedTrackTruth"),
00005     chargedOnly = cms.bool(True),
00006     stableOnly = cms.bool(False),
00007     pdgId = cms.vint32(),
00008     tip = cms.double(3.5),
00009     signalOnly = cms.bool(True),
00010     minRapidity = cms.double(-2.4),
00011     lip = cms.double(30.0),
00012     ptMin = cms.double(0.9),
00013     maxRapidity = cms.double(2.4),
00014     minHit = cms.int32(0)
00015 )
00016 
00017 
00018