CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfIsolatedMuons_cfi.py
Go to the documentation of this file.
2 
3 pfIsolatedMuons = cms.EDFilter(
4  "IsolatedPFCandidateSelector",
5  src = cms.InputTag("pfSelectedMuons"),
6  isolationValueMaps = cms.VInputTag(
7  cms.InputTag("isoValMuonWithCharged"),
8  cms.InputTag("isoValMuonWithNeutral"),
9  cms.InputTag("isoValMuonWithPhotons")
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.}; optimised for Z->mu,mu
23  combinedIsolationCut = cms.double(0.15)
24  )