Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:44

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 inOutSeedsFromTrackerMuons = cms.EDProducer("MuonReSeeder",
0004     ## Input collection of muons, and selection. track.isNonnull is implicit.
0005     src = cms.InputTag("muons"),
0006     cut = cms.string("pt > 2"),
0007     ## Keep at most these layers from the tracker track of the muon
0008     layersToKeep = cms.int32(5),
0009     ## Use the inner part of the tracker track to make a seed
0010     insideOut  = cms.bool(True),
0011     #### Turn on verbose debugging (to be removed at the end)
0012     debug = cms.untracked.bool(False),
0013     ## Configuration for the refitter
0014     DoPredictionsOnly = cms.bool(False),
0015     Fitter = cms.string('KFFitterForRefitInsideOut'),
0016     TrackerRecHitBuilder = cms.string('WithAngleAndTemplate'),
0017     Smoother = cms.string('KFSmootherForRefitInsideOut'),
0018     MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
0019     MTDRecHitBuilder = cms.string('MTDRecHitBuilder'),
0020     RefitDirection = cms.string('alongMomentum'),
0021     RefitRPCHits = cms.bool(True),
0022     Propagator = cms.string('SmartPropagatorAnyRKOpposite'),
0023 )