CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/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     # DYT thresholds:
00027     #  first int --> DT threshold
00028     # second int --> CSC threshold
00029     #  third int --> if 1 APEs are used
00030     DYTthrs = cms.vint32(25, 10, 1),
00031 
00032     # muon station to be skipped
00033     SkipStation         = cms.int32(-1),
00034 
00035     # PXB = 1, PXF = 2, TIB = 3, TID = 4, TOB = 5, TEC = 6
00036     TrackerSkipSystem   = cms.int32(-1),
00037 
00038     # layer, wheel, or disk depending on the system
00039     TrackerSkipSection  = cms.int32(-1)
00040 )
00041