CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfSelectedMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfSelectedMuons = cms.EDFilter(
4  "GenericPFCandidateSelector",
5  src = cms.InputTag("pfMuonsFromVertex"),
6  cut = cms.string("pt>5")
7 )
8 
9 
10 
11