Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:33:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
0004 from RecoMuon.TrackingTools.MuonUpdatorAtVertex_cff import *
0005 muonSeedTrack = cms.EDAnalyzer("MuonSeedTrack",
0006     MuonUpdatorAtVertex,
0007     MuonServiceProxy,
0008     MuonSeed = cms.InputTag("MuonSeed")
0009 )
0010 
0011 
0012