Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:45:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 globalTrackQualityProducer = cms.EDProducer('GlobalTrackQualityProducer',
0004   ServiceParameters = cms.PSet(),
0005   GlobalMuonTrackMatcher = cms.PSet(),
0006   InputCollection = cms.InputTag('globalMuons'),
0007   InputLinksCollection = cms.InputTag('globalMuons'),
0008   BaseLabel = cms.string('GLB'),
0009   RefitterParameters = cms.PSet(
0010     DTRecSegmentLabel = cms.InputTag('dt1DRecHits'),
0011     CSCRecSegmentLabel = cms.InputTag('csc2DRecHits'),
0012     GEMRecHitLabel = cms.InputTag('gemRecHits'),
0013     ME0RecHitLabel = cms.InputTag('me0Segments'),
0014     RPCRecSegmentLabel = cms.InputTag('rpcRecHits'),
0015     Fitter = cms.string('KFFitterForRefitInsideOut'),
0016     Smoother = cms.string('KFSmootherForRefitInsideOut'),
0017     Propagator = cms.string('SmartPropagatorAnyRK'),
0018     TrackerRecHitBuilder = cms.string('WithAngleAndTemplate'),
0019     MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
0020     DoPredictionsOnly = cms.bool(False),
0021     RefitDirection = cms.string('insideOut'),
0022     PropDirForCosmics = cms.bool(False),
0023     RefitRPCHits = cms.bool(True),
0024     DYTthrs = cms.vint32(
0025       10,
0026       10
0027     ),
0028     DYTselector = cms.int32(1),
0029     DYTupdator = cms.bool(False),
0030     DYTuseAPE = cms.bool(False),
0031     DYTuseThrsParametrization = cms.bool(True),
0032     DYTthrsParameters = cms.PSet(
0033       eta0p8 = cms.vdouble(
0034         1,
0035         -0.919853,
0036         0.990742
0037       ),
0038       eta1p2 = cms.vdouble(
0039         1,
0040         -0.897354,
0041         0.987738
0042       ),
0043       eta2p0 = cms.vdouble(
0044         4,
0045         -0.986855,
0046         0.998516
0047       ),
0048       eta2p2 = cms.vdouble(
0049         1,
0050         -0.940342,
0051         0.992955
0052       ),
0053       eta2p4 = cms.vdouble(
0054         1,
0055         -0.947633,
0056         0.993762
0057       )
0058     ),
0059     SkipStation = cms.int32(-1),
0060     TrackerSkipSystem = cms.int32(-1),
0061     TrackerSkipSection = cms.int32(-1),
0062     RefitFlag = cms.bool(True)
0063   ),
0064   nSigma = cms.double(3),
0065   MaxChi2 = cms.double(100000),
0066   mightGet = cms.optional.untracked.vstring
0067 )