CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/CommonTools/ParticleFlow/python/ParticleSelectors/pfSelectedElectrons_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pfSelectedElectrons = cms.EDFilter(
00004     "GenericPFCandidateSelector",
00005     src = cms.InputTag("pfElectronsFromVertex"),
00006     cut = cms.string("pt>5 && gsfTrackRef.isNonnull && gsfTrackRef.trackerExpectedHitsInner.numberOfLostHits<2")
00007 )
00008 
00009 
00010 
00011