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
Trigger
EFTracking
FPGATrackSim
FPGATrackSimObjects
src
FPGATrackSimTowerInputHeader.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
FPGATrackSimObjects/FPGATrackSimTowerInputHeader.h
"
6
#include <iostream>
7
8
9
FPGATrackSimTowerInputHeader::FPGATrackSimTowerInputHeader
(
int
id
,
double
e
,
double
p
,
double
de,
double
dp
) :
10
m_id(
id
),
11
m_Eta(
e
), m_Phi(
p
),
12
m_DeltaEta(de), m_DeltaPhi(
dp
)
13
{
14
m_Hits
.clear();
15
}
16
17
void
FPGATrackSimTowerInputHeader::reset
()
18
{
19
m_id
= 0;
20
m_Eta
= 0.0;
21
m_Phi
= 0.0;
22
m_DeltaEta
= 0.0;
23
m_DeltaPhi
= 0.0;
24
m_Hits
.clear();
25
}
26
27
28
std::ostream&
operator<<
(std::ostream&
s
,
const
FPGATrackSimTowerInputHeader
&
r
)
29
{
30
31
s
<<
"Tower: id="
<<
r
.id() <<
"\t eta="
<<
r
.eta() <<
"\t phi="
<<
r
.phi()
32
<<
"\t Nhits="
<<
r
.nHits();
33
34
return
s
;
35
}
36
AllowedVariables::e
e
Definition:
AsgElectronSelectorTool.cxx:37
beamspotman.r
def r
Definition:
beamspotman.py:676
TileDCSDataPlotter.dp
dp
Definition:
TileDCSDataPlotter.py:840
FPGATrackSimTowerInputHeader::FPGATrackSimTowerInputHeader
FPGATrackSimTowerInputHeader()
Definition:
FPGATrackSimTowerInputHeader.h:21
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
FPGATrackSimTowerInputHeader.h
FPGATrackSimTowerInputHeader::m_id
int m_id
Definition:
FPGATrackSimTowerInputHeader.h:54
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
FPGATrackSimTowerInputHeader::m_Hits
std::vector< FPGATrackSimHit > m_Hits
Definition:
FPGATrackSimTowerInputHeader.h:62
FPGATrackSimTowerInputHeader::m_Eta
double m_Eta
Definition:
FPGATrackSimTowerInputHeader.h:56
FPGATrackSimTowerInputHeader::m_DeltaEta
double m_DeltaEta
Definition:
FPGATrackSimTowerInputHeader.h:59
FPGATrackSimTowerInputHeader::reset
void reset()
Definition:
FPGATrackSimTowerInputHeader.cxx:17
id
SG::auxid_t id
Definition:
Control/AthContainers/Root/debug.cxx:239
FPGATrackSimTowerInputHeader::m_DeltaPhi
double m_DeltaPhi
Definition:
FPGATrackSimTowerInputHeader.h:60
FPGATrackSimTowerInputHeader::m_Phi
double m_Phi
Definition:
FPGATrackSimTowerInputHeader.h:57
FPGATrackSimTowerInputHeader
Definition:
FPGATrackSimTowerInputHeader.h:18
operator<<
std::ostream & operator<<(std::ostream &s, const FPGATrackSimTowerInputHeader &r)
Definition:
FPGATrackSimTowerInputHeader.cxx:28
Generated on Fri Apr 25 2025 21:10:56 for ATLAS Offline Software by
1.8.18