Loading [MathJax]/jax/output/SVG/config.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_LocRecEvent.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_LocRecEvent.h
"
8
9
10
// Default constructor needed by athenaroot/athenapool
11
ALFA_LocRecEvent::ALFA_LocRecEvent
()
12
{
13
m_iAlgoNum
= 0;
14
m_fOverU
= 0.0;
15
m_fOverV
= 0.0;
16
m_iNumU
= 0;
17
m_iNumV
= 0;
18
m_pot_num
= 0;
19
m_x
= 0.0;
20
m_y
= 0.0;
21
}
22
23
// destructor
24
ALFA_LocRecEvent::~ALFA_LocRecEvent
() {}
25
26
ALFA_LocRecEvent::ALFA_LocRecEvent
(
int
iAlgoNum,
int
n_pot_num,
float
x_pos,
float
y_pos,
float
fOverU,
float
fOverV,
int
iNumU,
int
iNumV, std::vector<int> iFibSel):
27
m_iAlgoNum(iAlgoNum), m_pot_num(n_pot_num), m_x(x_pos), m_y(y_pos), m_fOverU(fOverU), m_fOverV(fOverV), m_iNumU(iNumU), m_iNumV(iNumV), m_iFibSel(std::move(iFibSel))
28
{}
ALFA_LocRecEvent::m_y
float m_y
Definition:
ALFA_LocRecEvent.h:36
ALFA_LocRecEvent.h
ALFA_LocRecEvent::~ALFA_LocRecEvent
~ALFA_LocRecEvent()
Definition:
ALFA_LocRecEvent.cxx:24
ALFA_LocRecEvent::m_x
float m_x
Definition:
ALFA_LocRecEvent.h:35
ALFA_LocRecEvent::m_iAlgoNum
int m_iAlgoNum
Definition:
ALFA_LocRecEvent.h:33
ALFA_LocRecEvent::m_pot_num
int m_pot_num
Definition:
ALFA_LocRecEvent.h:34
ALFA_LocRecEvent::m_iNumU
int m_iNumU
Definition:
ALFA_LocRecEvent.h:40
ALFA_LocRecEvent::m_fOverU
float m_fOverU
Definition:
ALFA_LocRecEvent.h:38
ALFA_LocRecEvent::ALFA_LocRecEvent
ALFA_LocRecEvent()
Definition:
ALFA_LocRecEvent.cxx:11
ALFA_LocRecEvent::m_iNumV
int m_iNumV
Definition:
ALFA_LocRecEvent.h:41
ALFA_LocRecEvent::m_fOverV
float m_fOverV
Definition:
ALFA_LocRecEvent.h:39
Generated on Sat Mar 29 2025 21:06:58 for ATLAS Offline Software by
1.8.18