Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 goodMuons = cms.EDFilter("MuonRefSelector",
0004     src = cms.InputTag("muons"),
0005     cut = cms.string('pt > 0')
0006 )
0007 
0008