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
L1CaloFEX
L1CaloFEXToolInterfaces
L1CaloFEXToolInterfaces
IeTowerBuilder.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
//***************************************************************************
6
// IeTowerBuilder.h -
7
// -------------------
8
// begin : 23 03 2019
9
// email : jacob.julian.kempster@cern.ch
10
// ***************************************************************************/
11
12
#ifndef IeTowerBuilder_H
13
#define IeTowerBuilder_H
14
15
#include "GaudiKernel/IAlgTool.h"
16
#include "
CaloEvent/CaloCellContainer.h
"
17
#include "
L1CaloFEXSim/eTower.h
"
18
#include "
L1CaloFEXSim/eTowerContainer.h
"
19
20
namespace
LVL1
{
21
22
/*
23
Interface definition for eTowerBuilder
24
*/
25
26
static
const
InterfaceID IID_IeTowerBuilder(
"LVL1::IeTowerBuilder"
, 1, 0);
27
28
class
IeTowerBuilder
:
virtual
public
IAlgTool {
29
public
:
30
static
const
InterfaceID&
interfaceID
( ) ;
31
32
virtual
void
BuildEMBeTowers
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
33
virtual
void
BuildTRANSeTowers
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
34
virtual
void
BuildEMEeTowers
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0 ;
35
virtual
void
BuildHECeTowers
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
36
virtual
void
BuildAllTowers
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
37
virtual
void
BuildSingleTower
(std::unique_ptr<eTowerContainer> &
eTowerContainer
,
float
eta,
float
phi,
float
keybase,
int
posneg)
const
= 0;
38
39
virtual
void
init
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
40
virtual
void
execute
(std::unique_ptr<eTowerContainer> &
eTowerContainer
)
const
= 0;
41
virtual
void
reset
()
const
= 0;
42
43
44
private
:
45
46
};
47
48
inline
const
InterfaceID&
LVL1::IeTowerBuilder::interfaceID
()
49
{
50
return
IID_IeTowerBuilder;
51
}
52
53
}
// end of namespace
54
55
#endif
LVL1::IeTowerBuilder::BuildTRANSeTowers
virtual void BuildTRANSeTowers(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
eTowerContainer.h
LVL1::IeTowerBuilder::init
virtual void init(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
LVL1
eFexTowerBuilder creates xAOD::eFexTowerContainer from supercells (LATOME) and triggerTowers (TREX) i...
Definition:
ICMMCPHitsCnvTool.h:18
LVL1::IeTowerBuilder::execute
virtual void execute(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
LVL1::IeTowerBuilder::reset
virtual void reset() const =0
LVL1::IeTowerBuilder::interfaceID
static const InterfaceID & interfaceID()
Definition:
IeTowerBuilder.h:48
LVL1::IeTowerBuilder::BuildSingleTower
virtual void BuildSingleTower(std::unique_ptr< eTowerContainer > &eTowerContainer, float eta, float phi, float keybase, int posneg) const =0
LVL1::IeTowerBuilder::BuildAllTowers
virtual void BuildAllTowers(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
LVL1::IeTowerBuilder::BuildHECeTowers
virtual void BuildHECeTowers(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
LVL1::IeTowerBuilder::BuildEMEeTowers
virtual void BuildEMEeTowers(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
LVL1::eTowerContainer
Definition:
eTowerContainer.h:35
LVL1::IeTowerBuilder::BuildEMBeTowers
virtual void BuildEMBeTowers(std::unique_ptr< eTowerContainer > &eTowerContainer) const =0
CaloCellContainer.h
LVL1::IeTowerBuilder
Definition:
IeTowerBuilder.h:28
eTower.h
Generated on Sat Apr 5 2025 21:11:49 for ATLAS Offline Software by
1.8.18