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
InnerDetector
InDetAlignTools
InDetSurveyConstraintTool
src
SurveyConstraintPoint.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
// Description:
6
// Class SurveyConstraintPoint
7
//
8
// Author List:
9
// Tobias Golling
10
//
11
//------------------------------------------------------------------------
12
#include "
InDetSurveyConstraintTool/SurveyConstraintPoint.h
"
13
14
//----------------
15
// Constructors --
16
//----------------
17
18
SurveyConstraintPoint::SurveyConstraintPoint
( ) {
19
}
20
21
22
SurveyConstraintPoint::SurveyConstraintPoint
(
const
Amg::Vector3D
& survey,
23
const
Amg::Vector3D
&
current
)
24
:m_survey(survey),
25
m_current(
current
){
26
}
27
28
// Copy Constructor
29
SurveyConstraintPoint::SurveyConstraintPoint
(
const
SurveyConstraintPoint
&
other
)
30
:m_survey(
other
.survey()),
31
m_current(
other
.
current
()){
32
}
33
34
//--------------
35
// Destructor --
36
//--------------
37
38
SurveyConstraintPoint::~SurveyConstraintPoint
( ){
39
}
40
41
//-------------
42
// Operators --
43
//-------------
44
45
SurveyConstraintPoint
&
46
SurveyConstraintPoint::operator=
(
const
SurveyConstraintPoint
& rhs){
47
if
(&rhs !=
this
){
48
m_survey
= rhs.
survey
();
49
m_current
= rhs.
current
();
50
}
51
return
*
this
;
52
}
53
54
bool
55
SurveyConstraintPoint::operator==
(
const
SurveyConstraintPoint
& rhs )
const
{
56
return
this
== &rhs;
57
}
58
59
bool
60
SurveyConstraintPoint::operator!=
(
const
SurveyConstraintPoint
& rhs )
const
{
61
return
this
!= &rhs;
62
}
SurveyConstraintPoint::operator!=
bool operator!=(const SurveyConstraintPoint &) const
Definition:
SurveyConstraintPoint.cxx:60
fillPileUpNoiseLumi.current
current
Definition:
fillPileUpNoiseLumi.py:52
SurveyConstraintPoint::survey
const Amg::Vector3D & survey() const
Definition:
SurveyConstraintPoint.h:49
SurveyConstraintPoint.h
SurveyConstraintPoint::operator=
SurveyConstraintPoint & operator=(const SurveyConstraintPoint &)
Definition:
SurveyConstraintPoint.cxx:46
SurveyConstraintPoint::current
const Amg::Vector3D & current() const
Definition:
SurveyConstraintPoint.h:50
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition:
GeoPrimitives.h:47
SurveyConstraintPoint::m_current
Amg::Vector3D m_current
Definition:
SurveyConstraintPoint.h:93
SurveyConstraintPoint
Definition:
SurveyConstraintPoint.h:25
InDetDD::other
@ other
Definition:
InDetDD_Defs.h:16
SurveyConstraintPoint::SurveyConstraintPoint
SurveyConstraintPoint()
Definition:
SurveyConstraintPoint.cxx:18
SurveyConstraintPoint::operator==
bool operator==(const SurveyConstraintPoint &) const
Definition:
SurveyConstraintPoint.cxx:55
SurveyConstraintPoint::m_survey
Amg::Vector3D m_survey
Definition:
SurveyConstraintPoint.h:92
SurveyConstraintPoint::~SurveyConstraintPoint
virtual ~SurveyConstraintPoint()
Definition:
SurveyConstraintPoint.cxx:38
Generated on Sat Mar 22 2025 21:19:11 for ATLAS Offline Software by
1.8.18