CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/RecoMuon/GlobalTrackingTools/python/GlobalMuonRefitter_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 GlobalMuonRefitter = cms.PSet(
00004     DTRecSegmentLabel = cms.InputTag("dt1DRecHits"),
00005     CSCRecSegmentLabel = cms.InputTag("csc2DRecHits"),
00006     RPCRecSegmentLabel = cms.InputTag("rpcRecHits"),
00007 
00008     MuonHitsOption = cms.int32(1),
00009     PtCut = cms.double(1.0),
00010     Chi2ProbabilityCut = cms.double(30.0),
00011     Chi2CutCSC = cms.double(1.0),
00012     Chi2CutDT = cms.double(30.0),
00013     Chi2CutRPC = cms.double(1.0),
00014     HitThreshold = cms.int32(1),
00015 
00016     Fitter = cms.string('KFFitterForRefitInsideOut'),
00017     Smoother = cms.string('KFSmootherForRefitInsideOut'),
00018     Propagator = cms.string('SmartPropagatorAnyRK'),
00019     TrackerRecHitBuilder = cms.string('WithTrackAngle'),
00020     MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
00021     DoPredictionsOnly = cms.bool(False),
00022     RefitDirection = cms.string('insideOut'),
00023     PropDirForCosmics = cms.bool(False),
00024     RefitRPCHits = cms.bool(True),
00025  
00026     # only the first two are used
00027     DYTthrs =  cms.vint32(10, 5),
00028 
00029     # muon station to be skipped
00030     SkipStation         = cms.int32(-1),
00031 
00032     # PXB = 1, PXF = 2, TIB = 3, TID = 4, TOB = 5, TEC = 6
00033     TrackerSkipSystem   = cms.int32(-1),
00034 
00035     # layer, wheel, or disk depending on the system
00036     TrackerSkipSection  = cms.int32(-1)
00037 )
00038