File indexing completed on 2024-04-06 12:28:44
0001 import FWCore.ParameterSet.Config as cms
0002
0003 import TrackingTools.KalmanUpdators.Chi2MeasurementEstimator_cfi
0004 hitCollectorForOutInMuonSeeds = TrackingTools.KalmanUpdators.Chi2MeasurementEstimator_cfi.Chi2MeasurementEstimator.clone(
0005 ComponentName = 'hitCollectorForOutInMuonSeeds',
0006 MaxChi2 = 100.0,
0007 nSigma = 4.,
0008 )
0009
0010 outInSeedsFromStandaloneMuons = cms.EDProducer('OutsideInMuonSeeder',
0011
0012 src = cms.InputTag('muons'),
0013 cut = cms.string('pt > 10 && outerTrack.hitPattern.muonStationsWithValidHits >= 2'),
0014 layersToTry = cms.int32(3),
0015 hitsToTry = cms.int32(3),
0016
0017 fromVertex = cms.bool(True),
0018
0019 muonPropagator = cms.string('SteppingHelixPropagatorAlong'),
0020
0021 trackerPropagator = cms.string('PropagatorWithMaterial'),
0022
0023 errorRescaleFactor = cms.double(2.0),
0024
0025 hitCollector = cms.string('hitCollectorForOutInMuonSeeds'),
0026
0027 maxEtaForTOB = cms.double(1.8),
0028 minEtaForTEC = cms.double(0.7),
0029
0030 debug = cms.untracked.bool(False),
0031 )
0032