/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoHI/HiTracking/python/HITrackingRegionProducer_cfi.py
65 строк
3 KB
Matthew
remove commented out code
29 фев 2024, 20:45
29 фев 2024, 20:45
05edcbb
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # global tracking region for primary pixel tracks from RecoTracker.TkTrackingRegions.globalTrackingRegionWithVertices_cfi import globalTrackingRegionWithVertices as _globalTrackingRegionWithVertices hiTrackingRegionWithVertex = _globalTrackingRegionWithVertices.clone(RegionPSet = dict( ptMin = 1.5, originRadius = 0.2, nSigmaZ = 3.0, beamSpot = "offlineBeamSpot", precise = True, useMultipleScattering = False, useFakeVertices = False, useFoundVertices = True, VertexCollection = "hiSelectedPixelVertex", useFixedError = True, fixedError = 0.2, sigmaZVertex = 3.0 )) # global tracking region for low-pt pixel tracks HiLowPtTrackingRegionWithVertexBlock = cms.PSet( ptMin = cms.double(0.25), originRadius = cms.double(0.2), nSigmaZ = cms.double(3.0), beamSpot = cms.InputTag("offlineBeamSpot"), precise = cms.bool(True), useMultipleScattering = cms.bool(False), useFakeVertices = cms.bool(False), useFoundVertices = cms.bool(True), VertexCollection = cms.InputTag("hiSelectedPixelVertex"), useFixedError = cms.bool(True), fixedError = cms.double(0.2), sigmaZVertex = cms.double(3.0) ) # limited tracking region for pixel proto-tracks passed to vertexing HiTrackingRegionForPrimaryVertexBlock = cms.PSet( ptMin = cms.double( 0.7 ), doVariablePtMin = cms.bool ( True ), originRadius = cms.double( 0.1 ), nSigmaZ = cms.double(3.0), beamSpot = cms.InputTag("offlineBeamSpot"), precise = cms.bool( True ), useMultipleScattering = cms.bool(False), useFakeVertices = cms.bool(False), siPixelRecHits = cms.InputTag( "siPixelRecHits" ), directionXCoord = cms.double( 1.0 ), directionYCoord = cms.double( 1.0 ), directionZCoord = cms.double( 0.0 ) ) # limited tracking region for pixel proto-tracks (using cluster vtx input) from RecoHI.HiTracking.hiTrackingRegionFromClusterVtx_cfi import hiTrackingRegionFromClusterVtx # limited jet-seeded tracking region from RecoTauTag.HLTProducers.TauRegionalPixelSeedGenerator_cfi import tauRegionalPixelSeedGenerator HiTrackingRegionFactoryFromJetsBlock = tauRegionalPixelSeedGenerator.RegionFactoryPSet.clone( RegionPSet = dict( JetSrc = "iterativeConePu5CaloJets", vertexSrc = "hiSelectedPixelVertex") ) # limited stand-alone muon-seeded tracking region from RecoMuon.TrackingTools.MuonServiceProxy_cff import MuonServiceProxy from RecoMuon.GlobalTrackingTools.MuonTrackingRegionCommon_cff import MuonTrackingRegionCommon