/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/Configuration/python/SETRecoMuon_cff.py
29 строк
1 KB
Matthew
activate highPurity selection in GlobalMuonTrajectoryBuilder, move era customization back
25 янв 2022, 15:01
25 янв 2022, 15:01
3aa8262
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from RecoMuon.MuonSeedGenerator.SETMuonSeed_cff import * from RecoMuon.StandAloneMuonProducer.standAloneMuons_cff import standAloneSETMuons from RecoMuon.GlobalMuonProducer.GlobalMuonProducer_cff import * globalSETMuons = globalMuons.clone( MuonCollectionLabel = 'standAloneSETMuons:UpdatedAtVtx', selectHighPurity = False ) muontracking_with_SET_Task = cms.Task(SETMuonSeed,standAloneSETMuons,globalSETMuons) muontracking_with_SET = cms.Sequence(muontracking_with_SET_Task) from RecoMuon.MuonIdentification.muonIdProducerSequence_cff import * muonsWithSET = muons1stStep.clone( inputCollectionLabels = ['generalTracks', 'globalSETMuons', 'standAloneSETMuons:UpdatedAtVtx'], inputCollectionTypes = ['inner tracks', 'links', 'outer tracks'], selectHighPurity = False, minPt = 0.5 ) #muonreco_with_SET = cms.Sequence(muontracking_with_SET*muonsWithSET) #run only the tracking part for SET, after that it should be merged with the main ones at some point muonreco_with_SET_Task = cms.Task(muontracking_with_SET_Task) muonreco_with_SET = cms.Sequence(muonreco_with_SET_Task) muonreco_with_standAloneSET_Task = cms.Task(SETMuonSeed,standAloneSETMuons) muonreco_with_standAloneSET = cms.Sequence(muonreco_with_standAloneSET_Task)