CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfMuons_cff.py
Go to the documentation of this file.
2 
4 #from CommonTools.ParticleFlow.ParticleSelectors.pfMuonsPtGt5_cfi import *
9 
10 pfMuons = pfIsolatedMuons.clone()
11 pfMuons.isolationCut = 999
12 
13 pfMuonSequence = cms.Sequence(
14  pfAllMuons +
15  # muon selection
16  #pfMuonsPtGt5 +
17  pfMuonsFromVertex +
18  pfSelectedMuons +
19  # computing isolation variables:
20  pfMuonIsolationSequence +
21  # selecting isolated electrons:
22  pfIsolatedMuons+
23  pfMuons
24  )
25 
26 
27 
28