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
TrigAlgorithms
TrigEFMissingET
src
ApproximateTrackToLayerTool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGEFMISSINGET_APPROXIMATETRACKTOLAYERTOOL_H
6
#define TRIGEFMISSINGET_APPROXIMATETRACKTOLAYERTOOL_H
7
8
#include "
TrigEFMissingET/IExtendTrackToLayerTool.h
"
9
#include "
AsgTools/AsgTool.h
"
10
11
class
ApproximateTrackToLayerTool
:
public
virtual
IExtendTrackToLayerTool
,
public
asg::AsgTool
12
{
13
public
:
14
ASG_TOOL_CLASS
(
ApproximateTrackToLayerTool
,
IExtendTrackToLayerTool
)
15
16
ApproximateTrackToLayerTool
(
const
std::string &
name
);
17
18
virtual
TrackExtension
extendTrack
(
19
const
EventContext &,
20
const
xAOD::TrackParticle
&
track
)
const override
;
21
22
private
:
23
// Extrapolation approximation taken from ATL-COM-PHYS-2016-430
24
Gaudi::Property<double>
m_trackExtrapolationQuartic
{
25
this
,
"TrackExtrapolationQuarticTerm"
, 14.6027571,
26
"The quartic term in the track extrapolation"
};
27
Gaudi::Property<double>
m_trackExtrapolationQuadratic
{
28
this
,
"TrackExtrapolationQuadraticTerm"
, -44.7818374,
29
"The quadratic term in the track extrapolation"
};
30
Gaudi::Property<double>
m_trackExtrapolationLinear
{
31
this
,
"TrackExtrapolationLinearTerm"
, 540.656643,
32
"The linear term in the track extrapolation"
};
33
};
//> end class ApproximateTrackToLayerTool
34
35
#endif //> !TRIGEFMISSINGET_APPROXIMATETRACKTOLAYERTOOL_H
ApproximateTrackToLayerTool::ApproximateTrackToLayerTool
ApproximateTrackToLayerTool(const std::string &name)
Definition:
ApproximateTrackToLayerTool.cxx:7
IExtendTrackToLayerTool
Definition:
IExtendTrackToLayerTool.h:14
asg::AsgTool
Base class for the dual-use tool implementation classes.
Definition:
AsgTool.h:47
ApproximateTrackToLayerTool::m_trackExtrapolationLinear
Gaudi::Property< double > m_trackExtrapolationLinear
Definition:
ApproximateTrackToLayerTool.h:30
IExtendTrackToLayerTool.h
ApproximateTrackToLayerTool::m_trackExtrapolationQuadratic
Gaudi::Property< double > m_trackExtrapolationQuadratic
Definition:
ApproximateTrackToLayerTool.h:27
IExtendTrackToLayerTool::TrackExtension
Helper struct to hold track extrapolation information.
Definition:
IExtendTrackToLayerTool.h:27
ApproximateTrackToLayerTool
Definition:
ApproximateTrackToLayerTool.h:12
ApproximateTrackToLayerTool::m_trackExtrapolationQuartic
Gaudi::Property< double > m_trackExtrapolationQuartic
Definition:
ApproximateTrackToLayerTool.h:24
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
ApproximateTrackToLayerTool::extendTrack
virtual TrackExtension extendTrack(const EventContext &, const xAOD::TrackParticle &track) const override
Extend the track to a given layer.
Definition:
ApproximateTrackToLayerTool.cxx:11
ASG_TOOL_CLASS
#define ASG_TOOL_CLASS(CLASSNAME, INT1)
Definition:
AsgToolMacros.h:68
xAOD::track
@ track
Definition:
TrackingPrimitives.h:513
xAOD::TrackParticle_v1
Class describing a TrackParticle.
Definition:
TrackParticle_v1.h:43
AsgTool.h
Generated on Thu Apr 24 2025 21:07:09 for ATLAS Offline Software by
1.8.18