Loading [MathJax]/extensions/MathMenu.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_LocRecEv
src
ALFA_LocRecODEvent.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include <utility>
6
7
#include "
ALFA_LocRecEv/ALFA_LocRecODEvent.h
"
8
9
10
// Default constructor needed by athenaroot/athenapool
11
ALFA_LocRecODEvent::ALFA_LocRecODEvent
()
12
{
13
m_iAlgoNum
= 0;
14
m_fOverY
= 0.0;
15
m_iNumY
= 0;
16
m_pot_num
= 0;
17
m_side
= 0;
18
m_y
= 0.0;
19
}
20
21
// destructor
22
ALFA_LocRecODEvent::~ALFA_LocRecODEvent
() {}
23
24
ALFA_LocRecODEvent::ALFA_LocRecODEvent
(
int
iAlgoNum,
int
n_pot_num,
int
n_side ,
float
y_pos,
float
fOverY,
int
iNumY, std::vector<int> iFibSel):
25
m_iAlgoNum(iAlgoNum), m_pot_num(n_pot_num), m_side(n_side), m_y(y_pos), m_fOverY(fOverY), m_iNumY(iNumY), m_iFibSel(std::move(iFibSel))
26
{}
27
28
29
ALFA_LocRecODEvent::m_iNumY
int m_iNumY
Definition:
ALFA_LocRecODEvent.h:37
ALFA_LocRecODEvent::m_fOverY
float m_fOverY
Definition:
ALFA_LocRecODEvent.h:36
ALFA_LocRecODEvent::m_pot_num
int m_pot_num
Definition:
ALFA_LocRecODEvent.h:32
ALFA_LocRecODEvent::ALFA_LocRecODEvent
ALFA_LocRecODEvent()
Definition:
ALFA_LocRecODEvent.cxx:11
ALFA_LocRecODEvent::m_side
int m_side
Definition:
ALFA_LocRecODEvent.h:33
ALFA_LocRecODEvent::m_y
float m_y
Definition:
ALFA_LocRecODEvent.h:34
ALFA_LocRecODEvent.h
ALFA_LocRecODEvent::m_iAlgoNum
int m_iAlgoNum
Definition:
ALFA_LocRecODEvent.h:31
ALFA_LocRecODEvent::~ALFA_LocRecODEvent
~ALFA_LocRecODEvent()
Definition:
ALFA_LocRecODEvent.cxx:22
Generated on Thu Apr 3 2025 21:07:02 for ATLAS Offline Software by
1.8.18