CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/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.pfMuonsFromVertex_cfi import *
00005 from CommonTools.ParticleFlow.Isolation.pfIsolatedMuons_cfi import *
00006 
00007 
00008 pfMuons = pfIsolatedMuons.clone(cut = cms.string("pt > 5 & muonRef.isAvailable()"))
00009 
00010 
00011 pfMuonSequence = cms.Sequence(
00012     pfAllMuons +
00013     pfMuonsFromVertex +
00014     pfIsolatedMuons+
00015     pfMuons 
00016     )
00017 
00018 
00019 
00020