CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoMuon/TrackingTools/python/MuonErrorMatrixAdjuster_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #values for correction
00004 from RecoMuon.TrackingTools.MuonErrorMatrixValues_cff import *
00005 MuonErrorMatrixAdjuster = cms.EDProducer("MuonErrorMatrixAdjuster",
00006     #if replace is true this means error matrix from reco is replaced by new method of error matrix (reco minus sim of parameters to get the error)
00007     #if replace is false this means the error matrix from reco is rescaled by a factor
00008     rescale = cms.bool(True),
00009     #this is the root file with the TProfile 3D in it of the track collection. Make sure it corresponds to the boolean above
00010     errorMatrix_pset = cms.PSet(
00011         # use either one of the two following lines
00012         #string rootFileName = "errorMatrix_ScaleFactor.root"
00013         MuonErrorMatrixValues,
00014         action = cms.string('use')
00015     ),
00016     instanceName = cms.string(''),
00017     rechitLabel = cms.InputTag("standAloneMuons"),
00018     trackLabel = cms.InputTag("standAloneMuons","UpdatedAtVtx")
00019 )
00020 
00021 
00022