CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalMuonRefitter_cff.py
Go to the documentation of this file.
2 
3 GlobalMuonRefitter = cms.PSet(
4  DTRecSegmentLabel = cms.InputTag("dt1DRecHits"),
5  CSCRecSegmentLabel = cms.InputTag("csc2DRecHits"),
6  RPCRecSegmentLabel = cms.InputTag("rpcRecHits"),
7 
8  MuonHitsOption = cms.int32(1),
9  PtCut = cms.double(1.0),
10  Chi2ProbabilityCut = cms.double(30.0),
11  Chi2CutCSC = cms.double(1.0),
12  Chi2CutDT = cms.double(30.0),
13  Chi2CutRPC = cms.double(1.0),
14  HitThreshold = cms.int32(1),
15 
16  Fitter = cms.string('KFFitterForRefitInsideOut'),
17  Smoother = cms.string('KFSmootherForRefitInsideOut'),
18  Propagator = cms.string('SmartPropagatorAnyRK'),
19  TrackerRecHitBuilder = cms.string('WithTrackAngle'),
20  MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
21  DoPredictionsOnly = cms.bool(False),
22  RefitDirection = cms.string('insideOut'),
23  PropDirForCosmics = cms.bool(False),
24  RefitRPCHits = cms.bool(True),
25 
26  # only the first two are used
27  DYTthrs = cms.vint32(10, 5),
28 
29  # muon station to be skipped
30  SkipStation = cms.int32(-1),
31 
32  # PXB = 1, PXF = 2, TIB = 3, TID = 4, TOB = 5, TEC = 6
33  TrackerSkipSystem = cms.int32(-1),
34 
35  # layer, wheel, or disk depending on the system
36  TrackerSkipSection = cms.int32(-1)
37 )
38