CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfIsolatedElectrons_cfi.py
Go to the documentation of this file.
2 
3 pfIsolatedElectrons = cms.EDFilter(
4  "IsolatedPFCandidateSelector",
5  src = cms.InputTag("pfSelectedElectrons"),
6  isolationValueMaps = cms.VInputTag(
7  cms.InputTag("isoValElectronWithCharged"),
8  cms.InputTag("isoValElectronWithNeutral"),
9  cms.InputTag("isoValElectronWithPhotons")
10  ),
11  ## if True isolation is relative to pT
12  isRelative = cms.bool(True),
13  ## if True all isoValues are combined (summed)
14  isCombined = cms.bool(True),
15  ## not used when isCombined=True
16  # non-optimised default for loose absulute isolation
17  isolationCuts = cms.vdouble( 10,
18  10,
19  10 ),
20  ## not used when isCombined=False
21  # default value for combined relative with DR={0.4,0.4,0.4}
22  # and weight={1.,1.,1.}; no optimal value found, yet.
23  combinedIsolationCut = cms.double(0.2)
24  )
25