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
TrigAnalysis
TriggerMatchingTool
src
TestMatchingToolAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGGERMATCHINGTOOL_TESTMATCHINGTOOLALG_H
6
#define TRIGGERMATCHINGTOOL_TESTMATCHINGTOOLALG_H 1
7
8
#include "
AthAnalysisBaseComps/AthAnalysisAlgorithm.h
"
9
10
#include "
TriggerMatchingTool/IMatchingTool.h
"
11
12
#include <map>
13
14
class
TestMatchingToolAlg
:
public
::AthAnalysisAlgorithm
{
15
public
:
16
TestMatchingToolAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator ) :
AthAnalysisAlgorithm
(
name
, pSvcLocator ) {}
17
virtual
~TestMatchingToolAlg
() {}
18
19
virtual
StatusCode
initialize
();
20
virtual
StatusCode
execute
();
21
virtual
StatusCode
finalize
();
22
23
private
:
24
25
ToolHandle<Trig::IMatchingTool>
m_tmt
;
26
27
std::map<std::string,int>
m_matches
;
28
29
};
30
31
#endif //> !TRIGGERMATCHINGTOOL_TESTMATCHINGTOOLALG_H
AthAnalysisAlgorithm
Definition:
AthAnalysisAlgorithm.h:34
TestMatchingToolAlg
Definition:
TestMatchingToolAlg.h:14
TestMatchingToolAlg::m_tmt
ToolHandle< Trig::IMatchingTool > m_tmt
Definition:
TestMatchingToolAlg.h:25
TestMatchingToolAlg::finalize
virtual StatusCode finalize()
Definition:
TestMatchingToolAlg.cxx:110
TestMatchingToolAlg::execute
virtual StatusCode execute()
Definition:
TestMatchingToolAlg.cxx:18
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TestMatchingToolAlg::TestMatchingToolAlg
TestMatchingToolAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TestMatchingToolAlg.h:16
AthAnalysisAlgorithm.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
TestMatchingToolAlg::initialize
virtual StatusCode initialize()
Definition:
TestMatchingToolAlg.cxx:12
IMatchingTool.h
TestMatchingToolAlg::m_matches
std::map< std::string, int > m_matches
Definition:
TestMatchingToolAlg.h:27
TestMatchingToolAlg::~TestMatchingToolAlg
virtual ~TestMatchingToolAlg()
Definition:
TestMatchingToolAlg.h:17
Generated on Mon Apr 21 2025 21:19:45 for ATLAS Offline Software by
1.8.18