/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/TrackRefitter/python/cosmicMuonTrajectories_cff.py
36 строк
2 KB
Jeongeun Lee
drop type spec in TrackingTools RecoMuon
07 дек 2020, 12:04
07 дек 2020, 12:04
4046bdf
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from TrackingTools.TrackRefitter.TracksToTrajectories_cff import * # IMPORTANT !!! ## # If you want to revert the fit direction, then # Case 1 # # string RefitDirection = "alongMomentum" # KFTrajectoryFitterESProducer ---> Fitter = "KFFitterForRefitInsideOut" # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitInsideOut" # Case 2 # # string RefitDirection = "alongMomentum" # KFTrajectoryFitterESProducer ---> Fitter = "KFFitterForRefitOutsideIn" # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitOutsideIn" # Case 3 # # string RefitDirection = "oppositeToMomentum" # KFTrajectoryFitterESProducer ---> Fitter = "KFFitterForRefitOutsideIn" # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitOutsideIn" # Case 4 # # string RefitDirection = "oppositeToMomentum" # KFTrajectoryFitterESProducer ---> Fitter = "KFFitterForRefitOutsideIn" # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitOutsideIn" # cosmicMuons = cms.EDProducer("TracksToTrajectories", Type = cms.string("CosmicMuonsForAlignment"), Tracks = cms.InputTag("cosmicMuons"), TrackTransformer = cms.PSet( TrackerRecHitBuilder = cms.string('WithTrackAngle'), MuonRecHitBuilder = cms.string('MuonRecHitBuilder'), MTDRecHitBuilder = cms.string('MTDRecHitBuilder'), RefitRPCHits = cms.bool(True) ) ) MuAlCosmics = cosmicMuons.clone( Tracks = "ALCARECOMuAlGlobalCosmics:StandAlone" )