Loading [MathJax]/extensions/tex2jax.js
LSSTApplications
18.1.0
LSSTDataManagementBasePackage
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
z
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Typedefs
a
b
c
d
e
f
i
k
m
p
r
s
t
v
w
Enumerations
+
Enumerator
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Classes
Class List
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
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
i
k
l
m
p
s
t
v
w
+
Enumerator
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
v
w
x
y
Properties
+
Related Functions
a
b
c
d
e
f
i
k
m
o
p
s
t
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Functions
d
l
p
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
+
Macros
_
a
b
c
d
f
i
k
l
m
n
p
r
s
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
stack
Linux64
afw
18.1.0
python
lsst
afw
geom
ellipses
quadrupole
quadrupoleContinued.py
Go to the documentation of this file.
1
__all__ = []
# import this module only for its side effects
2
3
from
lsst.utils
import
continueClass
4
from
.quadrupole
import
Quadrupole
5
6
7
@continueClass
# noqa: F811
8
class
Quadrupole
:
9
def
__repr__
(self):
10
return
"Quadrupole(ixx=%r, iyy=%r, ixy=%r)"
% (self.getIxx(), self.getIyy(), self.getIxy())
11
12
def
__reduce__
(self):
13
return
(Quadrupole, (self.getIxx(), self.getIyy(), self.getIxy()))
14
15
def
__str__
(self):
16
return
"(ixx=%s, iyy=%s, ixy=%s)"
% (self.getIxx(), self.getIyy(), self.getIxy())
lsst::utils
Definition:
Backtrace.h:29
lsst::afw::geom::ellipses.quadrupole.quadrupoleContinued.Quadrupole
Definition:
quadrupoleContinued.py:8
lsst::afw::geom::ellipses.quadrupole.quadrupoleContinued.Quadrupole.__str__
def __str__(self)
Definition:
quadrupoleContinued.py:15
lsst::afw::geom::ellipses.quadrupole.quadrupoleContinued.Quadrupole.__repr__
def __repr__(self)
Definition:
quadrupoleContinued.py:9
lsst::afw::geom::ellipses.quadrupole.quadrupoleContinued.Quadrupole.__reduce__
def __reduce__(self)
Definition:
quadrupoleContinued.py:12
Generated on Thu Aug 8 2019 20:20:06 for LSSTApplications by
1.8.13