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
w
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
MuonSpectrometer
MSVertexReconstruction
MSVertexRecoAlg
src
MSVertexRecoAlg.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
#pragma once
6
7
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
8
#include "GaudiKernel/ToolHandle.h"
9
#include "
MSVertexToolInterfaces/IMSVertexRecoTool.h
"
10
#include "
MSVertexToolInterfaces/IMSVertexTrackletTool.h
"
11
12
class
MSVertexRecoAlg
:
public
AthReentrantAlgorithm
{
13
public
:
14
MSVertexRecoAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
15
virtual
~MSVertexRecoAlg
() =
default
;
16
17
virtual
StatusCode
initialize
()
override
;
18
virtual
StatusCode
execute
(
const
EventContext& ctx)
const override
;
19
20
private
:
21
ToolHandle<Muon::IMSVertexTrackletTool>
m_vertexTrackletTool
{
this
,
"MSVertexTrackletTool"
,
22
"Muon::MSVertexTrackletTool/MSVertexTrackletTool"
};
23
ToolHandle<Muon::IMSVertexRecoTool>
m_vertexRecoTool
{
this
,
"MSVertexRecoTool"
,
"Muon::MSVertexRecoTool/MSVertexRecoTool"
};
24
};
MSVertexRecoAlg::m_vertexRecoTool
ToolHandle< Muon::IMSVertexRecoTool > m_vertexRecoTool
Definition:
MSVertexRecoAlg.h:23
IMSVertexTrackletTool.h
MSVertexRecoAlg::~MSVertexRecoAlg
virtual ~MSVertexRecoAlg()=default
MSVertexRecoAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition:
MSVertexRecoAlg.cxx:30
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
MSVertexRecoAlg::initialize
virtual StatusCode initialize() override
Definition:
MSVertexRecoAlg.cxx:16
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IMSVertexRecoTool.h
AthReentrantAlgorithm.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
MSVertexRecoAlg::MSVertexRecoAlg
MSVertexRecoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
MSVertexRecoAlg.cxx:12
MSVertexRecoAlg::m_vertexTrackletTool
ToolHandle< Muon::IMSVertexTrackletTool > m_vertexTrackletTool
Definition:
MSVertexRecoAlg.h:21
MSVertexRecoAlg
Definition:
MSVertexRecoAlg.h:12
Generated on Sat May 10 2025 21:14:13 for ATLAS Offline Software by
1.8.18