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_GloRecEv
src
ALFA_GloRecEvent.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 "
ALFA_GloRecEv/ALFA_GloRecEvent.h
"
6
7
8
9
// Default constructor needed by athenaroot/athenapool
10
ALFA_GloRecEvent::ALFA_GloRecEvent
()
11
{
12
m_arm
= 0;
13
m_x
= 0.0;
14
m_y
= 0.0;
15
m_x_slope
= 0.0;
16
m_y_slope
= 0.0;
17
m_near_LocRecCorr
=
nullptr
;
18
m_far_LocRecCorr
=
nullptr
;
19
}
20
21
// destructor
22
ALFA_GloRecEvent::~ALFA_GloRecEvent
() {}
23
24
// constructor
25
ALFA_GloRecEvent::ALFA_GloRecEvent
(
26
int
arm,
27
float
x_pos,
28
float
y_pos,
29
float
x_slope,
30
float
y_slope,
31
const
ALFA_LocRecCorrEvent
* near_hit,
32
const
ALFA_LocRecCorrEvent
* far_hit
33
):m_arm(arm),
34
m_x(x_pos),
35
m_y(y_pos),
36
m_x_slope(x_slope),
37
m_y_slope(y_slope),
38
m_near_LocRecCorr(near_hit),
39
m_far_LocRecCorr(far_hit)
40
{
41
}
ALFA_GloRecEvent::m_x
float m_x
Definition:
ALFA_GloRecEvent.h:67
ALFA_GloRecEvent::m_y
float m_y
Definition:
ALFA_GloRecEvent.h:68
ALFA_GloRecEvent::~ALFA_GloRecEvent
~ALFA_GloRecEvent()
Definition:
ALFA_GloRecEvent.cxx:22
ALFA_GloRecEvent::m_far_LocRecCorr
const ALFA_LocRecCorrEvent * m_far_LocRecCorr
Definition:
ALFA_GloRecEvent.h:72
ALFA_GloRecEvent::m_y_slope
float m_y_slope
Definition:
ALFA_GloRecEvent.h:70
ALFA_LocRecCorrEvent
Definition:
ALFA_LocRecCorrEvent.h:8
ALFA_GloRecEvent::m_x_slope
float m_x_slope
Definition:
ALFA_GloRecEvent.h:69
ALFA_GloRecEvent::ALFA_GloRecEvent
ALFA_GloRecEvent()
Definition:
ALFA_GloRecEvent.cxx:10
ALFA_GloRecEvent::m_near_LocRecCorr
const ALFA_LocRecCorrEvent * m_near_LocRecCorr
Definition:
ALFA_GloRecEvent.h:71
ALFA_GloRecEvent::m_arm
int m_arm
Definition:
ALFA_GloRecEvent.h:66
ALFA_GloRecEvent.h
Generated on Wed Apr 9 2025 21:07:06 for ATLAS Offline Software by
1.8.18