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
Reconstruction
eflowRec
eflowRec
eflowFirstInt.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef EFLOWFIRSTINT_H
6
#define EFLOWFIRSTINT_H
7
8
/********************************************************************
9
10
NAME: eflowFirstInt.h
11
PACKAGE: offline/Reconstruction/eflowRec
12
13
AUTHORS: M.Hodgkinson, R Duxfield (based on R.Duxfields Root package)
14
CREATED: 18th Aug, 2005
15
16
********************************************************************/
17
18
#include <iostream>
19
23
class
eflowFirstInt
{
24
25
public
:
26
27
eflowFirstInt
() :
m_fudgeMean
(0.0),
m_fudgeStdDev
(0.0) {}
28
eflowFirstInt
(
double
mean
,
double
stdDev) :
m_fudgeMean
(
mean
),
m_fudgeStdDev
(stdDev) {}
29
~eflowFirstInt
() {}
30
31
double
fudgeMean
()
const
{
return
m_fudgeMean
;}
32
double
fudgeStdDev
()
const
{
return
m_fudgeStdDev
;}
33
34
void
setFudgeMean
(
double
fudgeMean
) {
m_fudgeMean
=
fudgeMean
;}
35
void
setFudgeStdDev
(
double
fudgeStdDev
) {
m_fudgeStdDev
=
fudgeStdDev
;}
36
37
protected
:
38
39
double
m_fudgeMean
;
40
double
m_fudgeStdDev
;
41
42
};
43
44
45
#endif
mean
void mean(std::vector< double > &bins, std::vector< double > &values, const std::vector< std::string > &files, const std::string &histname, const std::string &tplotname, const std::string &label="")
Definition:
dependence.cxx:254
eflowFirstInt
This object holds the expected energy deposit of a track and the known width of that distribution.
Definition:
eflowFirstInt.h:23
eflowFirstInt::eflowFirstInt
eflowFirstInt()
Definition:
eflowFirstInt.h:35
eflowFirstInt::fudgeStdDev
double fudgeStdDev() const
Definition:
eflowFirstInt.h:40
eflowFirstInt::m_fudgeMean
double m_fudgeMean
Definition:
eflowFirstInt.h:47
eflowFirstInt::m_fudgeStdDev
double m_fudgeStdDev
Definition:
eflowFirstInt.h:48
eflowFirstInt::fudgeMean
double fudgeMean() const
Definition:
eflowFirstInt.h:39
eflowFirstInt::setFudgeMean
void setFudgeMean(double fudgeMean)
Definition:
eflowFirstInt.h:42
eflowFirstInt::setFudgeStdDev
void setFudgeStdDev(double fudgeStdDev)
Definition:
eflowFirstInt.h:43
eflowFirstInt::~eflowFirstInt
~eflowFirstInt()
Definition:
eflowFirstInt.h:37
Generated on Tue Mar 25 2025 21:09:56 for ATLAS Offline Software by
1.8.18