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
TrigGepPerf
src
GepCellMap.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGGEPPERF_GEPCELLMAP_H
6
#define TRIGGEPPERF_GEPCELLMAP_H
7
8
#include "
./GepCaloCell.h
"
9
#include <map>
10
#include <memory>
11
#include "
AthenaKernel/CLASS_DEF.h
"
12
13
typedef
std::unique_ptr<std::map<unsigned int,Gep::GepCaloCell>>
pGepCellMap
;
14
15
namespace
Gep
{
16
17
class
GepCellMap
{
18
19
public
:
20
GepCellMap
() {}
21
~GepCellMap
() {}
22
23
void
insert
(
unsigned
int
id
,
const
Gep::GepCaloCell
&
cell
) {
24
m_cellMap
.emplace(
id
,
cell
);
25
}
26
27
unsigned
int
size
() {
28
return
m_cellMap
.size();
29
}
30
31
pGepCellMap
getCellMap
() {
32
return
std::make_unique<std::map<unsigned int,Gep::GepCaloCell>>(
m_cellMap
);
33
}
34
35
private
:
36
37
std::map<unsigned int,Gep::GepCaloCell>
m_cellMap
;
38
39
};
40
}
41
42
CLASS_DEF
(
Gep::GepCellMap
, 252505461, 1 )
43
44
#endif //TRIGGEPPERF_GEPCELLMAP_H
Gep::GepCellMap
Definition:
GepCellMap.h:17
Gep::GepCellMap::insert
void insert(unsigned int id, const Gep::GepCaloCell &cell)
Definition:
GepCellMap.h:23
Gep::GepCellMap::getCellMap
pGepCellMap getCellMap()
Definition:
GepCellMap.h:31
Gep::GepCellMap::size
unsigned int size()
Definition:
GepCellMap.h:27
ReadCellNoiseFromCool.cell
cell
Definition:
ReadCellNoiseFromCool.py:53
Gep::GepCellMap::GepCellMap
GepCellMap()
Definition:
GepCellMap.h:20
Gep::GepCellMap::m_cellMap
std::map< unsigned int, Gep::GepCaloCell > m_cellMap
Definition:
GepCellMap.h:37
Gep
Definition:
Trigger/TrigT1/TrigGepPerf/src/Cluster.h:11
Gep::GepCaloCell
Definition:
GepCaloCell.h:13
Gep::GepCellMap::~GepCellMap
~GepCellMap()
Definition:
GepCellMap.h:21
GepCaloCell.h
CLASS_DEF
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Definition:
Control/AthenaKernel/AthenaKernel/CLASS_DEF.h:67
pGepCellMap
std::unique_ptr< std::map< unsigned int, Gep::GepCaloCell > > pGepCellMap
Definition:
GepCellMap.h:13
CLASS_DEF.h
macros to associate a CLID to a type
Generated on Wed Apr 2 2025 21:11:07 for ATLAS Offline Software by
1.8.18