CMS 3D CMS Logo

SETRecoMuon_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 from RecoMuon.StandAloneMuonProducer.standAloneMuons_cff import standAloneSETMuons
6 
8 globalSETMuons = globalMuons.clone()
9 globalSETMuons.MuonCollectionLabel = cms.InputTag("standAloneSETMuons","UpdatedAtVtx")
10 
11 muontracking_with_SET_Task = cms.Task(SETMuonSeed,standAloneSETMuons,globalSETMuons)
12 muontracking_with_SET = cms.Sequence(muontracking_with_SET_Task)
14 muonsWithSET = muons1stStep.clone()
15 muonsWithSET.inputCollectionLabels = ['generalTracks', 'globalSETMuons', cms.InputTag('standAloneSETMuons','UpdatedAtVtx')]
16 muonsWithSET.inputCollectionTypes = ['inner tracks', 'links', 'outer tracks']
17 
18 #muonreco_with_SET = cms.Sequence(muontracking_with_SET*muonsWithSET)
19 #run only the tracking part for SET, after that it should be merged with the main ones at some point
20 muonreco_with_SET_Task = cms.Task(muontracking_with_SET_Task)
21 muonreco_with_SET = cms.Sequence(muonreco_with_SET_Task)
22 muonreco_with_standAloneSET_Task = cms.Task(SETMuonSeed,standAloneSETMuons)
23 muonreco_with_standAloneSET = cms.Sequence(muonreco_with_standAloneSET_Task)