/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoMuon/MuonSeedGenerator/python/SETMuonSeed_cfi.py
37 строк
2 KB
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # The services from RecoMuon.TrackingTools.MuonServiceProxy_cff import * # parametrization for initial pT from RecoMuon.MuonSeedGenerator.ptSeedParameterization_38T_cfi import ptSeedParameterization from RecoMuon.MuonSeedGenerator.MuonSeedPtScale_cfi import dphiScale SETMuonSeed = cms.EDProducer("SETMuonSeedProducer", MuonServiceProxy, beamSpotTag = cms.InputTag("offlineBeamSpot"), SETTrajBuilderParameters = cms.PSet( ptSeedParameterization, dphiScale, scaleDT = cms.bool(True), Apply_prePruning = cms.bool(True), # Careful - next is used together with useSubRecHits in standAloneMuons_cfi.py (for now) # UseSegmentsInTrajectory = cms.bool(True), UseSegmentsInTrajectory = cms.bool(False), FilterParameters = cms.PSet( DTRecSegmentLabel = cms.InputTag("dt4DSegments"), CSCRecSegmentLabel = cms.InputTag("cscSegments"), RPCRecSegmentLabel = cms.InputTag("rpcRecHits"), Propagator = cms.string('SteppingHelixPropagatorAny'), # DT + CSC chambers here maxActiveChambers = cms.int32(100), EnableRPCMeasurement = cms.bool(True), # Check the position of the segment including errors OutsideChamberErrorScale = cms.double(1.0), # The segment should not be parallel to the chamber MinLocalSegmentAngle = cms.double(0.09), # NOT USED for now EnableDTMeasurement = cms.bool(True), EnableCSCMeasurement = cms.bool(True) ) ) )