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
MuonSpectrometer
MuonReconstruction
MuonSegmentMakers
MuonSegmentMakerInterfaces
MuonSegmentMakerInterfaces
IDCSLFitProvider.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_IDCSLFITPROVIDER
6
#define MUON_IDCSLFITPROVIDER
7
8
#include "GaudiKernel/IAlgTool.h"
9
10
11
namespace
TrkDriftCircleMath
{
12
class
DCSLFitter;
13
}
14
15
namespace
Muon
{
16
18
class
IDCSLFitProvider
:
virtual
public
IAlgTool {
19
public
:
20
21
static
const
InterfaceID&
interfaceID
(){
22
static
const
InterfaceID IID_IDCSLFitProvider(
"Muon::IDCSLFitProvider"
,1,0);
23
return
IID_IDCSLFitProvider;
24
}
28
virtual
const
TrkDriftCircleMath::DCSLFitter
*
getFitter
()
const
= 0;
33
virtual
~IDCSLFitProvider
() =
default
;
34
39
struct
Unowned
{
40
void
operator()
(
const
TrkDriftCircleMath::DCSLFitter
*)
const
{}
41
};
42
43
};
44
45
}
// end of name space
46
47
#endif // IDCSLFitProvider_H
48
Muon::IDCSLFitProvider::~IDCSLFitProvider
virtual ~IDCSLFitProvider()=default
default destructor
Muon::IDCSLFitProvider::Unowned
Helper struct to overload the destructors of smart pointers.
Definition:
IDCSLFitProvider.h:39
TrkDriftCircleMath::DCSLFitter
Definition:
Tracking/TrkUtilityPackages/TrkDriftCircleMath/TrkDriftCircleMath/DCSLFitter.h:17
TrkDriftCircleMath
Function object to check whether two Segments are sub/super sets or different.
Definition:
IMdtSegmentFinder.h:13
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::IDCSLFitProvider::getFitter
virtual const TrkDriftCircleMath::DCSLFitter * getFitter() const =0
fitter factory
Muon::IDCSLFitProvider::interfaceID
static const InterfaceID & interfaceID()
Definition:
IDCSLFitProvider.h:21
Muon::IDCSLFitProvider
Interface for tools resolving ambigueties and remove outliers in Muon::MuonSegment objects.
Definition:
IDCSLFitProvider.h:18
Muon::IDCSLFitProvider::Unowned::operator()
void operator()(const TrkDriftCircleMath::DCSLFitter *) const
Definition:
IDCSLFitProvider.h:40
Generated on Mon Apr 21 2025 21:11:45 for ATLAS Offline Software by
1.8.18