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
w
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
TrigT1
TrigT1TGC
src
TGCTMDBOut.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 "
TrigT1TGC/TGCTMDBOut.h
"
6
7
#include <iostream>
8
9
namespace
LVL1TGC
{
10
11
TGCTMDBOut::TGCTMDBOut
()
12
: m_sideID(0), m_moduleID(-1), m_hit_56(TM_NA), m_hit_6(TM_NA)
13
{
14
}
15
16
TGCTMDBOut::TGCTMDBOut
(
const
int
side
,
const
int
module
,
const
TileModuleHit
hit56,
const
TileModuleHit
hit6)
17
: m_sideID(
side
), m_moduleID(
module
), m_hit_56(hit56), m_hit_6(hit6)
18
{
19
}
20
21
void
TGCTMDBOut::print
()
const
22
{
23
std::cout <<
"Side="
<<
m_sideID
24
<<
" :: ModuleID="
<<
m_moduleID
25
<<
" :: Hit_56="
<<
m_hit_56
26
<<
" :: Hit_6="
<<
m_hit_6
27
<< std::endl;
28
}
29
30
31
}
// end of namespace
LVL1TGC::TGCTMDBOut::m_hit_56
TileModuleHit m_hit_56
Definition:
TGCTMDBOut.h:46
LVL1TGC::TGCTMDBOut::m_hit_6
TileModuleHit m_hit_6
Definition:
TGCTMDBOut.h:47
LVL1TGC::TGCTMDBOut::m_sideID
int m_sideID
Definition:
TGCTMDBOut.h:44
LVL1TGC::TGCTMDBOut::TGCTMDBOut
TGCTMDBOut()
Definition:
TGCTMDBOut.cxx:11
TRT::Hit::side
@ side
Definition:
HitInfo.h:83
python.PyAthena.module
module
Definition:
PyAthena.py:131
LVL1TGC
Definition:
BigWheelCoincidenceLUT.cxx:20
TGCTMDBOut.h
LVL1TGC::TGCTMDBOut::m_moduleID
int m_moduleID
Definition:
TGCTMDBOut.h:45
LVL1TGC::TGCTMDBOut::print
void print() const
Definition:
TGCTMDBOut.cxx:21
LVL1TGC::TGCTMDBOut::TileModuleHit
TileModuleHit
Definition:
TGCTMDBOut.h:13
Generated on Wed May 7 2025 21:19:13 for ATLAS Offline Software by
1.8.18