CMS 3D CMS Logo

standAloneMuonsDirectTrajectoryBuilder_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # The services
6 
7 standAloneMuons = cms.EDProducer("StandAloneMuonProducer",
8  MuonTrackLoaderForSTA,
9  MuonServiceProxy,
10  InputObjects = cms.InputTag("MuonSeed"),
11  MuonTrajectoryBuilder = cms.string("DirectMuonTrajectoryBuilder"),
12  STATrajBuilderParameters = cms.PSet(SeedTransformerParameters = cms.PSet(Fitter = cms.string('KFFitterSmootherSTA'),
13  RescaleError = cms.double(100.0),
14  MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
15  Propagator = cms.string('SteppingHelixPropagatorAny'),
16  NMinRecHits = cms.uint32(2),
17  UseSubRecHits = cms.bool(True)
18  )
19  )
20  )
21 
22 
23