test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfSelectedElectrons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfSelectedElectrons = cms.EDFilter(
4  "GenericPFCandidateSelector",
5  src = cms.InputTag("pfElectronsFromVertex"),
6  cut = cms.string("pt>5 && gsfTrackRef.isNonnull && gsfTrackRef.hitPattern().numberOfLostHits('MISSING_INNER_HITS')<2")
7 )
8 
9 
10 
11