CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CommonTools/ParticleFlow/python/pfMuons_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from CommonTools.ParticleFlow.ParticleSelectors.pfAllMuons_cfi  import *
00004 #from CommonTools.ParticleFlow.ParticleSelectors.pfMuonsPtGt5_cfi import *
00005 from CommonTools.ParticleFlow.ParticleSelectors.pfMuonsFromVertex_cfi import *
00006 from CommonTools.ParticleFlow.ParticleSelectors.pfSelectedMuons_cfi import *
00007 from CommonTools.ParticleFlow.Isolation.pfMuonIsolation_cff import *
00008 from CommonTools.ParticleFlow.Isolation.pfIsolatedMuons_cfi import *
00009 
00010 
00011 
00012 pfMuonSequence = cms.Sequence(
00013     pfAllMuons +
00014     # muon selection
00015     #pfMuonsPtGt5 +
00016     pfMuonsFromVertex +
00017     pfSelectedMuons +
00018     # computing Isolation variables:
00019     pfMuonIsolationSequence +
00020     # selecting isolated electrons:
00021     pfIsolatedMuons 
00022     )
00023 
00024 
00025 
00026