CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_6/src/RecoMuon/TrackingTools/python/MuonErrorMatrixValues_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 ptRange = cms.vdouble(0 , 13, 30, 70, 1000)
00004 etaRange = cms.vdouble(0 , 1.0, 1.4, 10)
00005 
00006 diagTerm = cms.PSet( values = cms.vdouble( 3, 3, 3, 5,
00007                                            4, 5,  10, 7,
00008                                            10, 10, 10, 10
00009                                            ),
00010                      action = cms.string("scale")
00011                      )
00012 offDiagTerm = cms.PSet( values = cms.vdouble( 1, 1, 1, 1,
00013                                               1, 1, 1, 1,
00014                                               1, 1, 1, 1
00015                                               ),
00016                         action = cms.string("scale")
00017                         )
00018 
00019 MuonErrorMatrixValues = cms.PSet(
00020     errorMatrixPset = cms.PSet(
00021     action = cms.string('use'),
00022     atIP = cms.bool(True),
00023     errorMatrixValuesPSet = cms.PSet(
00024       xAxis = ptRange,
00025       yAxis = etaRange,
00026       zAxis = cms.vdouble(-3.14159, 3.14159),
00027     
00028       pf3_V11 = diagTerm,
00029       pf3_V22 = diagTerm,
00030       pf3_V33 = diagTerm,
00031       pf3_V44 = diagTerm,
00032       pf3_V55 = diagTerm,
00033       
00034       pf3_V12 = offDiagTerm,
00035       pf3_V13 = offDiagTerm,
00036       pf3_V14 = offDiagTerm,
00037       pf3_V15 = offDiagTerm,
00038       pf3_V23 = offDiagTerm,
00039       pf3_V24 = offDiagTerm,
00040       pf3_V25 = offDiagTerm,
00041       pf3_V34 = offDiagTerm,
00042       pf3_V35 = offDiagTerm,
00043       pf3_V45 = offDiagTerm
00044       )
00045     )
00046         
00047     )