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
MuonIdentification
MuonCombinedToolInterfaces
MuonCombinedToolInterfaces
IMuonCandidateTrackBuilderTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef MUON_IMUONCANDIDATETRACKBUILDERTOOL
6
#define MUON_IMUONCANDIDATETRACKBUILDERTOOL
7
8
#include <vector>
9
10
#include "GaudiKernel/IAlgTool.h"
11
#include "
MuonLayerEvent/MuonCandidate.h
"
12
#include "
MuonLayerEvent/MuonLayerRecoData.h
"
13
#include "
TrkTrack/Track.h
"
14
15
namespace
Muon
{
16
18
class
IMuonCandidateTrackBuilderTool
:
virtual
public
IAlgTool {
19
public
:
21
static
const
InterfaceID&
interfaceID
() {
22
static
const
InterfaceID IID_IMuonCandidateTrackBuilderTool(
"Muon::IMuonCandidateTrackBuilderTool"
, 1, 0);
23
return
IID_IMuonCandidateTrackBuilderTool;
24
}
26
virtual
std::unique_ptr<Trk::Track>
buildCombinedTrack
(
const
EventContext& ctx,
const
Trk::Track
& idTrack,
27
const
MuonCandidate
& candidate)
const
= 0;
28
29
virtual
~IMuonCandidateTrackBuilderTool
() =
default
;
30
};
31
32
}
// namespace Muon
33
34
#endif // IMuonCandidateTrackBuilderTool_H
Muon::MuonCandidate
Definition:
MuonSpectrometer/MuonReconstruction/MuonRecEvent/MuonLayerEvent/MuonLayerEvent/MuonCandidate.h:14
Muon::IMuonCandidateTrackBuilderTool::buildCombinedTrack
virtual std::unique_ptr< Trk::Track > buildCombinedTrack(const EventContext &ctx, const Trk::Track &idTrack, const MuonCandidate &candidate) const =0
build a track out of a MuonCandidate
Trk::Track
The ATLAS Track class.
Definition:
Tracking/TrkEvent/TrkTrack/TrkTrack/Track.h:73
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::IMuonCandidateTrackBuilderTool
Interface for a tool to build tracks out of a MuonCandidate
Definition:
IMuonCandidateTrackBuilderTool.h:18
Muon::IMuonCandidateTrackBuilderTool::~IMuonCandidateTrackBuilderTool
virtual ~IMuonCandidateTrackBuilderTool()=default
Track.h
Muon::IMuonCandidateTrackBuilderTool::interfaceID
static const InterfaceID & interfaceID()
IAlgTool interface.
Definition:
IMuonCandidateTrackBuilderTool.h:21
MuonCandidate.h
MuonLayerRecoData.h
Generated on Sat Mar 15 2025 21:11:44 for ATLAS Offline Software by
1.8.18