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
TrkVertexSeedFinderUtils
src
TwoTracks.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
TrkVertexSeedFinderUtils/TwoTracks.h
"
6
7
namespace
Trk
{
8
9
TwoTracks::TwoTracks
() : std::pair<
const
Perigee
*,
const
Perigee
*>(0,0) {}
10
11
TwoTracks::TwoTracks
(
const
Perigee
&
first
,
const
Perigee
&
second
):
12
std::pair<
const
Perigee
*,
const
Perigee
*>(&
first
,&
second
) {}
13
14
TwoTracks::TwoTracks
(
const
TwoTracks
&
same
) :
15
std::pair<
const
Perigee
*,
const
Perigee
*>(
same
.
first
,
same
.
second
) {}
16
17
const
Perigee
&
TwoTracks::getFirstPerigee
()
const
{
18
return
*(this->
first
);
19
}
20
21
const
Perigee
&
TwoTracks::getSecondPerigee
()
const
{
22
return
*(this->
second
);
23
}
24
25
void
TwoTracks::setFirstPerigee
(
const
Perigee
&
first
)
26
{
27
this->first=&
first
;
28
}
29
30
void
TwoTracks::setSecondPerigee
(
const
Perigee
&
second
)
31
{
32
this->second=&
second
;
33
}
34
35
}
python.SystemOfUnits.second
int second
Definition:
SystemOfUnits.py:120
Trk::TwoTracks::getSecondPerigee
const Perigee & getSecondPerigee() const
Definition:
TwoTracks.cxx:21
Trk::ParametersT
Dummy class used to allow special convertors to be called for surfaces owned by a detector element.
Definition:
EMErrorDetail.h:25
Trk::TwoTracks::getFirstPerigee
const Perigee & getFirstPerigee() const
Definition:
TwoTracks.cxx:17
const
bool const RAWDATA *ch2 const
Definition:
LArRodBlockPhysicsV0.cxx:560
python.TrigEgammaFastCaloHypoTool.same
def same(val, tool)
Definition:
TrigEgammaFastCaloHypoTool.py:12
Trk::TwoTracks::setSecondPerigee
void setSecondPerigee(const Perigee &first)
Definition:
TwoTracks.cxx:30
Trk::TwoTracks::setFirstPerigee
void setFirstPerigee(const Perigee &first)
Definition:
TwoTracks.cxx:25
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Trk::TwoTracks::TwoTracks
TwoTracks()
Definition:
TwoTracks.cxx:9
DeMoScan.first
bool first
Definition:
DeMoScan.py:536
TwoTracks.h
Trk::TwoTracks
Definition:
TwoTracks.h:15
Generated on Tue Apr 8 2025 21:22:52 for ATLAS Offline Software by
1.8.18