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
Tracking
TrkTools
TrkRIO_OnTrackCreator
src
RIO_OnTrackErrorScalingKit.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef _RIO_OnTrackErrorScalingKit_H_
6
#define _RIO_OnTrackErrorScalingKit_H_
7
8
#include "
TrkRIO_OnTrack/RIO_OnTrackErrorScaling.h
"
9
#include "
KitManager.h
"
10
11
class
RIO_OnTrackErrorScalingKit
12
{
13
public
:
14
virtual
~RIO_OnTrackErrorScalingKit
() {}
15
16
virtual
unsigned
int
nParametres
()
const
= 0;
17
virtual
const
char
*
const
*
paramNames
()
const
= 0;
18
virtual
size_t
getParamIndex
(
const
std::string &
name
)
const
;
19
20
virtual
std::unique_ptr<RIO_OnTrackErrorScaling>
create
()
const
= 0;
21
};
22
23
template
<
class
T>
24
class
RIO_OnTrackErrorScalingSpecialisedKit
:
public
RIO_OnTrackErrorScalingKit
25
{
26
public
:
27
virtual
std::unique_ptr<RIO_OnTrackErrorScaling>
create
()
const override
{
28
std::unique_ptr<RIO_OnTrackErrorScaling> error_scaling(
new
T
);
29
error_scaling->
params
().resize(this->
nParametres
());
30
return
error_scaling;
31
}
32
};
33
34
typedef
KitManager<RIO_OnTrackErrorScalingKit>
RIO_OnTrackErrorScalingKitManager
;
35
36
#endif
RIO_OnTrackErrorScalingKit::nParametres
virtual unsigned int nParametres() const =0
KitManager
Definition:
KitManager.h:31
RIO_OnTrackErrorScalingKitManager
KitManager< RIO_OnTrackErrorScalingKit > RIO_OnTrackErrorScalingKitManager
Definition:
RIO_OnTrackErrorScalingKit.h:34
RIO_OnTrackErrorScalingKit::getParamIndex
virtual size_t getParamIndex(const std::string &name) const
Definition:
RIO_OnTrackErrorScalingKit.cxx:6
RIO_OnTrackErrorScalingSpecialisedKit::create
virtual std::unique_ptr< RIO_OnTrackErrorScaling > create() const override
Definition:
RIO_OnTrackErrorScalingKit.h:27
RIO_OnTrackErrorScaling.h
RIO_OnTrackErrorScalingKit::create
virtual std::unique_ptr< RIO_OnTrackErrorScaling > create() const =0
RIO_OnTrackErrorScalingKit::~RIO_OnTrackErrorScalingKit
virtual ~RIO_OnTrackErrorScalingKit()
Definition:
RIO_OnTrackErrorScalingKit.h:14
RIO_OnTrackErrorScalingKit::paramNames
virtual const char *const * paramNames() const =0
RIO_OnTrackErrorScalingSpecialisedKit
Definition:
RIO_OnTrackErrorScalingKit.h:25
KitManager.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
RIO_OnTrackErrorScalingKit
Definition:
RIO_OnTrackErrorScalingKit.h:12
RIO_OnTrackErrorScaling::params
std::vector< std::vector< double > > & params()
Definition:
RIO_OnTrackErrorScaling.h:29
TSU::T
unsigned long long T
Definition:
L1TopoDataTypes.h:35
Generated on Thu Apr 24 2025 21:17:39 for ATLAS Offline Software by
1.8.18