CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
globalCosmicMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
6 
7 globalCosmicMuons = cms.EDProducer("GlobalCosmicMuonProducer",
8  MuonTrackLoaderForCosmic,
9  MuonServiceProxy,
10  TrajectoryBuilderParameters = cms.PSet(
11  GlobalMuonTrackMatcher,
12  MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
13  TrackerRecHitBuilder = cms.string('WithTrackAngle'),
14  TkTrackCollectionLabel = cms.InputTag("generalTracks"),
15  Propagator = cms.string('SteppingHelixPropagatorAny'),
16  SmootherParameters = cms.PSet(
17  PropagatorAlong = cms.string('SteppingHelixPropagatorAny'),
18  PropagatorOpposite = cms.string('SteppingHelixPropagatorAny'),
19  RescalingFactor = cms.double(5.0)
20  )
21  ),
22  MuonCollectionLabel = cms.InputTag("cosmicMuons")
23 )
24 
25