Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from CommonTools.ParticleFlow.ParticleSelectors.pfAllElectrons_cfi import *
00004 from CommonTools.ParticleFlow.ParticleSelectors.pfElectronsFromVertex_cfi import *
00005 from CommonTools.ParticleFlow.Isolation.pfIsolatedElectrons_cfi import *
00006
00007
00008 pfElectrons = pfIsolatedElectrons.clone( cut = cms.string(" pt > 5 & gsfElectronRef.isAvailable() & gsfTrackRef.trackerExpectedHitsInner.numberOfLostHits<2"))
00009
00010 pfElectronSequence = cms.Sequence(
00011 pfAllElectrons +
00012 pfElectronsFromVertex +
00013 pfIsolatedElectrons +
00014 pfElectrons
00015 )
00016
00017
00018
00019