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 goodTracks = cms.EDProducer("TrackViewCandidateProducer",
0004     src = cms.InputTag("generalTracks"),
0005     particleType = cms.string('mu+'),
0006     cut = cms.string('pt > 0')
0007 )
0008 
0009