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
PhysicsAnalysis
HeavyIonPhys
HIEventUtils
HIEventUtils
HIEventShapeMapTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef HIEVENTUTILS_HIEVENTSHAPEMAPTOOL_H
6
#define HIEVENTUTILS_HIEVENTSHAPEMAPTOOL_H
7
8
#include "
HIEventUtils/HIEventDefs.h
"
9
#include "
xAODHIEvent/HIEventShape.h
"
10
#include "
HIEventUtils/HIEventShapeIndex.h
"
11
#include "
HIEventUtils/IHIEventShapeMapTool.h
"
12
#include "
xAODHIEvent/HIEventShapeContainer.h
"
13
#include "
AsgTools/IAsgTool.h
"
14
#include "
AsgTools/AsgTool.h
"
15
16
#include <string>
17
#include <map>
18
19
class
HIEventShapeMapTool
:
virtual
public
asg::AsgTool
,
virtual
public
IHIEventShapeMapTool
20
{
21
ASG_TOOL_CLASS
(
HIEventShapeMapTool
,
IHIEventShapeMapTool
)
22
23
public
:
24
25
HIEventShapeMapTool
(
const
std::string&
n
);
26
virtual
~HIEventShapeMapTool
() {};
27
28
virtual
StatusCode
initialize
()
override
;
29
virtual
const
HIEventShapeIndex
*
getIndex
(
HI::BinningScheme
key
)
const override
;
30
virtual
const
HIEventShapeIndex
*
getIndexFromShape
(
const
xAOD::HIEventShapeContainer
* shape)
const override
;
31
32
virtual
bool
hasKey
(
HI::BinningScheme
key
)
override
;
33
34
private
:
35
36
std::map< HI::BinningScheme ,HIEventShapeIndex >
m_map
;
37
38
};
39
#endif
HIEventShapeMapTool::getIndex
virtual const HIEventShapeIndex * getIndex(HI::BinningScheme key) const override
Definition:
HIEventShapeMapTool.cxx:24
asg::AsgTool
Base class for the dual-use tool implementation classes.
Definition:
AsgTool.h:47
HIEventShapeIndex.h
HIEventShapeMapTool::m_map
std::map< HI::BinningScheme,HIEventShapeIndex > m_map
Definition:
HIEventShapeMapTool.h:36
IHIEventShapeMapTool
Definition:
IHIEventShapeMapTool.h:19
HIEventShapeMapTool::hasKey
virtual bool hasKey(HI::BinningScheme key) override
Definition:
HIEventShapeMapTool.cxx:58
HIEventShapeMapTool::initialize
virtual StatusCode initialize() override
Dummy implementation of the initialisation function.
Definition:
HIEventShapeMapTool.cxx:13
IHIEventShapeMapTool.h
HIEventDefs.h
HIEventShapeMapTool
Definition:
HIEventShapeMapTool.h:20
beamspotman.n
n
Definition:
beamspotman.py:731
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
HIEventShape.h
HIEventShapeContainer.h
IAsgTool.h
DataVector
Derived DataVector<T>.
Definition:
DataVector.h:794
HIEventShapeMapTool::getIndexFromShape
virtual const HIEventShapeIndex * getIndexFromShape(const xAOD::HIEventShapeContainer *shape) const override
Definition:
HIEventShapeMapTool.cxx:39
HIEventShapeIndex
Definition:
HIEventShapeIndex.h:16
HIEventShapeMapTool::~HIEventShapeMapTool
virtual ~HIEventShapeMapTool()
Definition:
HIEventShapeMapTool.h:26
HIEventShapeMapTool::HIEventShapeMapTool
HIEventShapeMapTool(const std::string &n)
Definition:
HIEventShapeMapTool.cxx:9
ASG_TOOL_CLASS
#define ASG_TOOL_CLASS(CLASSNAME, INT1)
Definition:
AsgToolMacros.h:68
HI::BinningScheme
BinningScheme
Definition:
HIEventDefs.h:16
AsgTool.h
mapkey::key
key
Definition:
TElectronEfficiencyCorrectionTool.cxx:37
Generated on Sat Mar 15 2025 21:11:24 for ATLAS Offline Software by
1.8.18