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
ForwardDetectors
ALFA
ALFA_RecEv
ALFA_LocRecCorrEv
src
ALFA_LocRecCorrEvent.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
ALFA_LocRecCorrEv/ALFA_LocRecCorrEvent.h
"
6
7
8
// Default constructor needed by athenaroot/athenapool
9
ALFA_LocRecCorrEvent::ALFA_LocRecCorrEvent
()
10
{
11
m_iAlgoNum
= 0;
12
m_pot_num
= 0;
13
m_xBeam
= 0.0;
14
m_xLHC
= 0.0;
15
m_xPot
= 0.0;
16
m_xStat
= 0.0;
17
m_yBeam
= 0.0;
18
m_yLHC
= 0.0;
19
m_yPot
= 0.0;
20
m_yStat
= 0.0;
21
m_zLHC
= 0.0;
22
}
23
24
// destructor
25
ALFA_LocRecCorrEvent::~ALFA_LocRecCorrEvent
() {}
26
27
ALFA_LocRecCorrEvent::ALFA_LocRecCorrEvent
(
int
iAlgoNum,
int
pot_num,
float
xLHC,
float
yLHC,
float
zLHC,
float
xPot,
float
yPot,
float
xStat,
float
yStat,
float
xBeam,
float
yBeam):
28
m_iAlgoNum(iAlgoNum), m_pot_num(pot_num), m_xLHC(xLHC), m_yLHC(yLHC), m_zLHC(zLHC), m_xPot(xPot), m_yPot(yPot), m_xStat(xStat), m_yStat(yStat), m_xBeam(xBeam), m_yBeam(yBeam)
29
{}
ALFA_LocRecCorrEvent.h
ALFA_LocRecCorrEvent::m_yBeam
float m_yBeam
Definition:
ALFA_LocRecCorrEvent.h:40
ALFA_LocRecCorrEvent::m_xStat
float m_xStat
Definition:
ALFA_LocRecCorrEvent.h:37
ALFA_LocRecCorrEvent::m_yStat
float m_yStat
Definition:
ALFA_LocRecCorrEvent.h:38
ALFA_LocRecCorrEvent::m_xPot
float m_xPot
Definition:
ALFA_LocRecCorrEvent.h:35
ALFA_LocRecCorrEvent::m_xBeam
float m_xBeam
Definition:
ALFA_LocRecCorrEvent.h:39
ALFA_LocRecCorrEvent::~ALFA_LocRecCorrEvent
~ALFA_LocRecCorrEvent()
Definition:
ALFA_LocRecCorrEvent.cxx:25
ALFA_LocRecCorrEvent::m_pot_num
int m_pot_num
Definition:
ALFA_LocRecCorrEvent.h:31
ALFA_LocRecCorrEvent::m_zLHC
float m_zLHC
Definition:
ALFA_LocRecCorrEvent.h:34
ALFA_LocRecCorrEvent::ALFA_LocRecCorrEvent
ALFA_LocRecCorrEvent()
Definition:
ALFA_LocRecCorrEvent.cxx:9
ALFA_LocRecCorrEvent::m_iAlgoNum
int m_iAlgoNum
Definition:
ALFA_LocRecCorrEvent.h:30
ALFA_LocRecCorrEvent::m_xLHC
float m_xLHC
Definition:
ALFA_LocRecCorrEvent.h:32
ALFA_LocRecCorrEvent::m_yLHC
float m_yLHC
Definition:
ALFA_LocRecCorrEvent.h:33
ALFA_LocRecCorrEvent::m_yPot
float m_yPot
Definition:
ALFA_LocRecCorrEvent.h:36
Generated on Thu Apr 10 2025 21:07:02 for ATLAS Offline Software by
1.8.18