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
Reconstruction
egamma
egammaInterfaces
egammaInterfaces
IEMTrackMatchBuilder.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// IEMTrackMatchBuilder.h, (c) ATLAS Detector software 2008
8
9
#ifndef EGAMMAINTERFACES_IEMTRACKMATCHBUILDER_H
10
#define EGAMMAINTERFACES_IEMTRACKMATCHBUILDER_H
11
21
// INCLUDE HEADER FILES:
22
#include "
egammaInterfaces/IegammaBaseTool.h
"
23
24
// Forward declarations
25
#include "GaudiKernel/EventContext.h"
26
#include "
egammaRecEvent/egammaRecContainer.h
"
27
#include "
xAODCaloEvent/CaloClusterFwd.h
"
28
#include "
xAODTracking/TrackParticleContainerFwd.h
"
29
30
class
egammaRec
;
31
static
const
InterfaceID IID_IEMTrackMatchBuilder(
"IEMTrackMatchBuilder"
, 1, 0);
32
33
class
IEMTrackMatchBuilder
:
virtual
public
IAlgTool
34
{
35
36
public
:
38
virtual
~IEMTrackMatchBuilder
(){};
39
41
static
const
InterfaceID&
interfaceID
();
43
virtual
StatusCode
initialize
() = 0;
45
virtual
StatusCode
executeRec
(
const
EventContext& ctx,
46
EgammaRecContainer
* egammas)
const
= 0;
47
};
48
49
inline
const
InterfaceID&
50
IEMTrackMatchBuilder::interfaceID
()
51
{
52
return
IID_IEMTrackMatchBuilder;
53
}
54
55
#endif
56
IEMTrackMatchBuilder
Definition:
IEMTrackMatchBuilder.h:34
IEMTrackMatchBuilder::~IEMTrackMatchBuilder
virtual ~IEMTrackMatchBuilder()
Virtual destructor.
Definition:
IEMTrackMatchBuilder.h:38
CaloClusterFwd.h
IEMTrackMatchBuilder::executeRec
virtual StatusCode executeRec(const EventContext &ctx, EgammaRecContainer *egammas) const =0
execute method
IEMTrackMatchBuilder::interfaceID
static const InterfaceID & interfaceID()
AlgTool interface methods.
Definition:
IEMTrackMatchBuilder.h:50
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
DataVector
Derived DataVector<T>.
Definition:
DataVector.h:794
IEMTrackMatchBuilder::initialize
virtual StatusCode initialize()=0
initialize method
IegammaBaseTool.h
egammaRec
Definition:
egammaRec.h:31
egammaRecContainer.h
TrackParticleContainerFwd.h
Generated on Sun Mar 23 2025 21:11:45 for ATLAS Offline Software by
1.8.18