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
TileCalorimeter
TileRecUtils
src
TileTowerBuilderTool.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// Gaudi includes
6
#include "GaudiKernel/MsgStream.h"
7
8
// Calo includes
9
#include "
CaloIdentifier/CaloCell_ID.h
"
10
#include "
CaloUtils/CaloTowerBuilderTool.h
"
11
12
// Tile includes
13
#include "
TileTowerBuilderTool.h
"
14
15
#include <string>
16
17
TileTowerBuilderTool::TileTowerBuilderTool
(
const
std::string&
name
,
const
std::string&
type
,
18
const
IInterface*
parent
)
19
:
CaloTowerBuilderTool
(
name
,
type
,
parent
)
20
{
21
}
22
23
TileTowerBuilderTool::~TileTowerBuilderTool
() {
24
}
25
26
31
std::vector<CaloCell_ID::SUBCALO>
32
TileTowerBuilderTool::parseCalos
33
(
const
std::vector<std::string>& includedCalos)
const
34
{
35
// convert to enumerators
36
std::vector<CaloCell_ID::SUBCALO>
indices
;
37
38
for
(
const
std::string&
s
: includedCalos) {
39
if
(
s
==
"TILE"
) {
40
indices
.push_back(
CaloCell_ID::TILE
);
41
}
42
}
43
44
return
indices
;
45
}
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
Trk::indices
std::pair< long int, long int > indices
Definition:
AlSymMatBase.h:24
TileTowerBuilderTool::parseCalos
virtual std::vector< CaloCell_ID::SUBCALO > parseCalos(const std::vector< std::string > &includedCalos) const override
Convert calorimeter strings to enums.
Definition:
TileTowerBuilderTool.cxx:33
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
CaloCell_ID.h
TileTowerBuilderTool::~TileTowerBuilderTool
virtual ~TileTowerBuilderTool()
Definition:
TileTowerBuilderTool.cxx:23
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
TileTowerBuilderTool::TileTowerBuilderTool
TileTowerBuilderTool(const std::string &name, const std::string &type, const IInterface *parent)
AlgTool constructor.
Definition:
TileTowerBuilderTool.cxx:17
CaloCell_Base_ID::TILE
@ TILE
Definition:
CaloCell_Base_ID.h:46
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
TileTowerBuilderTool.h
CaloTowerBuilderTool
Definition:
CaloTowerBuilderTool.h:34
CaloTowerBuilderTool.h
Generated on Wed Apr 16 2025 21:20:43 for ATLAS Offline Software by
1.8.18