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
jTETOB.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/jTETOB.h
"
4
5
thread_local
TCS::Heap<TCS::jTETOB>
TCS::jTETOB::fg_heap
(
"jTETOB"
);
6
7
// default constructor
8
TCS::jTETOB::jTETOB
() :
BaseTOB
(0,
"jTETOB"
)
9
{}
10
11
// constructor with initial values
12
TCS::jTETOB::jTETOB
(
unsigned
int
sumEt,
inputTOBType_t
tobType) :
BaseTOB
(0,
"jTETOB"
)
13
, m_sumEt( sumEt )
14
, m_tobType( tobType )
15
{}
16
17
18
// copy constructor
19
TCS::jTETOB::jTETOB
(
const
TCS::jTETOB
& jte) =
default
;
20
21
22
// destructor
23
TCS::jTETOB::~jTETOB
() =
default
;
24
25
TCS::jTETOB
*
26
TCS::jTETOB::createOnHeap
(
const
jTETOB
& jte) {
27
return
fg_heap.create(jte);
28
}
29
30
void
31
TCS::jTETOB::clearHeap
() {
32
return
fg_heap.clear();
33
}
34
35
void
TCS::jTETOB::print
(std::ostream &o)
const
{
36
o <<
"jTE type: "
<< tobType() <<
", sumEt: "
<< sumEt();
37
}
TCS::jTETOB::~jTETOB
virtual ~jTETOB()
TCS::jTETOB::print
virtual void print(std::ostream &o) const
Definition:
jTETOB.cxx:35
TCS::jTETOB::createOnHeap
static jTETOB * createOnHeap(const jTETOB &jte)
Definition:
jTETOB.cxx:26
TCS::Heap< TCS::jTETOB >
TCS::jTETOB::jTETOB
jTETOB()
Definition:
jTETOB.cxx:8
TCS::jTETOB::clearHeap
static void clearHeap()
Definition:
jTETOB.cxx:31
TCS::BaseTOB
Definition:
BaseTOB.h:12
TCS::jTETOB::fg_heap
static thread_local Heap< TCS::jTETOB > fg_heap
Definition:
jTETOB.h:64
jTETOB.h
TCS::jTETOB
Definition:
jTETOB.h:13
TCS::inputTOBType_t
inputTOBType_t
Definition:
Trigger/TrigT1/L1Topo/L1TopoCommon/L1TopoCommon/Types.h:10
Generated on Thu Mar 13 2025 21:13:03 for ATLAS Offline Software by
1.8.18