Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
LArCalorimeter
LArSamplesMon
LArSamplesMon
ScaledErrorData.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
10
#ifndef LArSamples_ScaledErrorData_H
11
#define LArSamples_ScaledErrorData_H
12
13
#include "
LArSamplesMon/ShapeErrorData.h
"
14
15
namespace
LArSamples
{
16
17
class
ScaledErrorData
:
public
ShapeErrorData
{
18
19
public
:
20
22
ScaledErrorData
(
const
ShapeErrorData
&
sed
,
double
scale
= 1,
double
time
= 0)
23
:
ShapeErrorData
(
sed
),
m_scale
(
scale
),
m_time
(
time
) { }
24
25
ScaledErrorData
(
const
ScaledErrorData
&
other
) :
26
ShapeErrorData
(
other
),
m_scale
(
other
.
m_scale
),
m_time
(
other
.
m_time
) { }
27
28
virtual
~ScaledErrorData
() { }
29
30
double
scale
()
const
{
return
m_scale
; }
31
double
time
()
const
{
return
m_time
; }
32
33
const
TVectorD
offsets
(
int
first
= -1,
int
last = -1)
const
;
34
const
CovMatrix
errors
(
int
first
= -1,
int
last = -1)
const
;
35
36
private
:
37
38
double
m_scale
,
m_time
;
39
};
40
}
41
42
#endif
43
LArSamples::ScaledErrorData::ScaledErrorData
ScaledErrorData(const ShapeErrorData &sed, double scale=1, double time=0)
Constructor
Definition:
ScaledErrorData.h:22
LArSamples::ScaledErrorData::~ScaledErrorData
virtual ~ScaledErrorData()
Definition:
ScaledErrorData.h:28
LArSamples::ScaledErrorData::m_time
double m_time
Definition:
ScaledErrorData.h:38
LArSamples::ScaledErrorData::ScaledErrorData
ScaledErrorData(const ScaledErrorData &other)
Definition:
ScaledErrorData.h:25
LArSamples::CovMatrix
TMatrixTSym< double > CovMatrix
Definition:
LArCalorimeter/LArCafJobs/LArCafJobs/Definitions.h:11
LArSamples
Definition:
AbsShape.h:24
LArSamples::ScaledErrorData
Definition:
ScaledErrorData.h:17
LArSamples::ScaledErrorData::scale
double scale() const
Definition:
ScaledErrorData.h:30
LArSamples::ScaledErrorData::m_scale
double m_scale
Definition:
ScaledErrorData.h:38
InDetDD::other
@ other
Definition:
InDetDD_Defs.h:16
DeMoScan.first
bool first
Definition:
DeMoScan.py:536
ShapeErrorData.h
LArSamples::ShapeErrorData
Definition:
ShapeErrorData.h:19
LArSamples::FitterData::sed
const ScaledErrorData * sed
Definition:
ShapeFitter.cxx:26
LArSamples::ScaledErrorData::errors
const CovMatrix errors(int first=-1, int last=-1) const
Definition:
ScaledErrorData.cxx:31
LArSamples::ScaledErrorData::time
double time() const
Definition:
ScaledErrorData.h:31
LArSamples::ScaledErrorData::offsets
const TVectorD offsets(int first=-1, int last=-1) const
Definition:
ScaledErrorData.cxx:14
Generated on Mon Mar 24 2025 21:17:56 for ATLAS Offline Software by
1.8.18