CMS 3D CMS Logo

outInSeedsFromStandaloneMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 hitCollectorForOutInMuonSeeds = TrackingTools.KalmanUpdators.Chi2MeasurementEstimator_cfi.Chi2MeasurementEstimator.clone(
5  ComponentName = 'hitCollectorForOutInMuonSeeds',
6  MaxChi2 = 100.0,
7  nSigma = 4.,
8 )
9 
10 outInSeedsFromStandaloneMuons = cms.EDProducer('OutsideInMuonSeeder',
11 
12  src = cms.InputTag('muons'),
13  cut = cms.string('pt > 10 && outerTrack.hitPattern.muonStationsWithValidHits >= 2'),
14  layersToTry = cms.int32(3), # try up to 3 layers where at least one seed is found
15  hitsToTry = cms.int32(3), # use at most 3 hits from the same layer
16 
17  fromVertex = cms.bool(True),
18 
19  muonPropagator = cms.string('SteppingHelixPropagatorAlong'),
20 
21  trackerPropagator = cms.string('PropagatorWithMaterial'),
22 
23  errorRescaleFactor = cms.double(2.0),
24 
25  hitCollector = cms.string('hitCollectorForOutInMuonSeeds'),
26 
27  maxEtaForTOB = cms.double(1.8),
28  minEtaForTEC = cms.double(0.7),
29 
30  debug = cms.untracked.bool(False),
31 )
32