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
TrkVertexFitter
TrkJetVxFitter
TrkJetVxFitter
NeutralTrack.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef VXJETVERTEX_NEUTRACK_H
6
#define VXJETVERTEX_NEUTRACK_H
7
#include "
EventPrimitives/EventPrimitives.h
"
8
9
namespace
Trk
{
10
class
NeutralTrack
: std::pair<Amg::Vector3D,Amg::Vector3D> {
11
12
public
:
13
NeutralTrack
(
Amg::Vector3D
x
,
Amg::Vector3D
p
);
14
15
~NeutralTrack
() {};
16
17
const
Amg::Vector3D
&
position
()
const
{
18
return
this->
first
;
19
}
20
21
const
Amg::Vector3D
&
momentum
()
const
{
22
return
this->
second
;
23
}
24
25
};
26
27
inline
NeutralTrack::NeutralTrack
(
Amg::Vector3D
x
,
Amg::Vector3D
p
):
28
std::pair<
Amg
::
Vector3D
,
Amg
::
Vector3D
>(
x
,
p
) {
29
}
30
}
31
32
33
#endif
python.SystemOfUnits.second
int second
Definition:
SystemOfUnits.py:120
python.utils.AtlRunQueryDQUtils.p
p
Definition:
AtlRunQueryDQUtils.py:210
Trk::NeutralTrack::momentum
const Amg::Vector3D & momentum() const
Definition:
NeutralTrack.h:21
Trk::NeutralTrack::~NeutralTrack
~NeutralTrack()
Definition:
NeutralTrack.h:15
EventPrimitives.h
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Amg
Definition of ATLAS Math & Geometry primitives (Amg)
Definition:
AmgStringHelpers.h:19
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition:
GeoPrimitives.h:47
Trk::NeutralTrack
Definition:
NeutralTrack.h:10
DeMoScan.first
bool first
Definition:
DeMoScan.py:536
Trk::NeutralTrack::NeutralTrack
NeutralTrack(Amg::Vector3D x, Amg::Vector3D p)
Definition:
NeutralTrack.h:27
Trk::x
@ x
Definition:
ParamDefs.h:55
Trk::NeutralTrack::position
const Amg::Vector3D & position() const
Definition:
NeutralTrack.h:17
Generated on Fri Apr 4 2025 21:16:04 for ATLAS Offline Software by
1.8.18