CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfElectrons_cff.py
Go to the documentation of this file.
2 
4 #from CommonTools.ParticleFlow.ParticleSelectors.pfElectronsPtGt5_cfi import *
9 
10 pfElectrons = pfIsolatedElectrons.clone()
11 pfElectrons.isolationCut = 999
12 
13 pfElectronSequence = cms.Sequence(
14  pfAllElectrons +
15  # electron selection:
16  #pfElectronsPtGt5 +
17  pfElectronsFromVertex +
18  pfSelectedElectrons +
19  # computing isolation variables:
20  pfElectronIsolationSequence +
21  # selecting isolated electrons:
22  pfIsolatedElectrons +
23  pfElectrons
24  )
25 
26 
27 
28