CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonErrorMatrixValues_cff.py
Go to the documentation of this file.
2 
3 ptRange = cms.vdouble(0 , 13, 30, 70, 1000)
4 etaRange = cms.vdouble(0 , 1.0, 1.4, 10)
5 
6 diagTerm = cms.PSet( values = cms.vdouble( 3, 3, 3, 5,
7  4, 5, 10, 7,
8  10, 10, 10, 10
9  ),
10  action = cms.string("scale")
11  )
12 offDiagTerm = cms.PSet( values = cms.vdouble( 1, 1, 1, 1,
13  1, 1, 1, 1,
14  1, 1, 1, 1
15  ),
16  action = cms.string("scale")
17  )
18 
19 MuonErrorMatrixValues = cms.PSet(
20  errorMatrixPset = cms.PSet(
21  action = cms.string('use'),
22  atIP = cms.bool(True),
23  errorMatrixValuesPSet = cms.PSet(
24  xAxis = ptRange,
25  yAxis = etaRange,
26  zAxis = cms.vdouble(-3.14159, 3.14159),
27 
28  pf3_V11 = diagTerm,
29  pf3_V22 = diagTerm,
30  pf3_V33 = diagTerm,
31  pf3_V44 = diagTerm,
32  pf3_V55 = diagTerm,
33 
34  pf3_V12 = offDiagTerm,
35  pf3_V13 = offDiagTerm,
36  pf3_V14 = offDiagTerm,
37  pf3_V15 = offDiagTerm,
38  pf3_V23 = offDiagTerm,
39  pf3_V24 = offDiagTerm,
40  pf3_V25 = offDiagTerm,
41  pf3_V34 = offDiagTerm,
42  pf3_V35 = offDiagTerm,
43  pf3_V45 = offDiagTerm
44  )
45  )
46 
47  )