CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonErrorMatrixAdjuster_cfi.py
Go to the documentation of this file.
2 
3 #values for correction
5 muonErrorMatrixAdjuster = cms.EDProducer("MuonErrorMatrixAdjuster",
6  #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)
7  #if replace is false this means the error matrix from reco is rescaled by a factor
8  rescale = cms.bool(True),
9  #this is the root file with the TProfile 3D in it of the track collection. Make sure it corresponds to the boolean above
10  errorMatrix_pset = cms.PSet(
11  # use either one of the two following lines
12  #string rootFileName = "errorMatrix_ScaleFactor.root"
13  MuonErrorMatrixValues,
14  action = cms.string('use')
15  ),
16  instanceName = cms.string(''),
17  rechitLabel = cms.InputTag("standAloneMuons"),
18  trackLabel = cms.InputTag("standAloneMuons","UpdatedAtVtx")
19 )
20 
21 
22