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
TrigT1
L1Topo
L1TopoEvent
Root
gTETOB.cxx
Go to the documentation of this file.
1
// Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3
#include "
L1TopoEvent/gTETOB.h
"
4
5
thread_local
TCS::Heap<TCS::gTETOB>
TCS::gTETOB::fg_heap
(
"gTETOB"
);
6
7
// default constructor
8
TCS::gTETOB::gTETOB
() :
BaseTOB
(0,
"gTETOB"
)
9
{}
10
11
// constructor with initial values
12
TCS::gTETOB::gTETOB
(
unsigned
int
sumEt,
inputTOBType_t
tobType) :
BaseTOB
(0,
"gTETOB"
)
13
, m_sumEt( sumEt )
14
, m_tobType( tobType )
15
{}
16
17
18
// copy constructor
19
TCS::gTETOB::gTETOB
(
const
TCS::gTETOB
& gte) =
default
;
20
21
22
// destructor
23
TCS::gTETOB::~gTETOB
() =
default
;
24
25
TCS::gTETOB
*
26
TCS::gTETOB::createOnHeap
(
const
gTETOB
& gte) {
27
return
fg_heap.create(gte);
28
}
29
30
void
31
TCS::gTETOB::clearHeap
() {
32
return
fg_heap.clear();
33
}
34
35
void
TCS::gTETOB::print
(std::ostream &o)
const
{
36
o <<
"gTE type: "
<< tobType() <<
", sumEt: "
<< sumEt();
37
}
TCS::gTETOB
Definition:
gTETOB.h:13
TCS::Heap< TCS::gTETOB >
TCS::gTETOB::gTETOB
gTETOB()
Definition:
gTETOB.cxx:8
TCS::gTETOB::~gTETOB
virtual ~gTETOB()
TCS::BaseTOB
Definition:
BaseTOB.h:12
gTETOB.h
TCS::inputTOBType_t
inputTOBType_t
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/Types.h:10
TCS::gTETOB::fg_heap
static thread_local Heap< TCS::gTETOB > fg_heap
Definition:
gTETOB.h:58
TCS::gTETOB::print
virtual void print(std::ostream &o) const
Definition:
gTETOB.cxx:35
TCS::gTETOB::createOnHeap
static gTETOB * createOnHeap(const gTETOB >e)
Definition:
gTETOB.cxx:26
TCS::gTETOB::clearHeap
static void clearHeap()
Definition:
gTETOB.cxx:31
Generated on Thu Mar 13 2025 21:11:14 for ATLAS Offline Software by
1.8.18