lsst.ip.diffim
16.0-4-gcfd1396+2
|
Functor class that provides (S/N, position, orientation) of measured dipoles. More...
Public Member Functions | |
def | __init__ (self) |
Constructor. More... | |
def | __call__ (self, source) |
Parse information returned from dipole measurement. More... | |
def | getSn (self, source) |
Get the total signal-to-noise of the dipole; total S/N is from positive and negative lobe. More... | |
def | getCentroid (self, source) |
Get the centroid of the dipole; average of positive and negative lobe. More... | |
def | getOrientation (self, source) |
Calculate the orientation of dipole; vector from negative to positive lobe. More... | |
def | displayDipoles (self, exposure, sources) |
Display debugging information on the detected dipoles. More... | |
Functor class that provides (S/N, position, orientation) of measured dipoles.
Definition at line 335 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.__init__ | ( | self | ) |
Constructor.
Definition at line 338 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.__call__ | ( | self, | |
source | |||
) |
Parse information returned from dipole measurement.
source | The source that will be examined |
Definition at line 342 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.displayDipoles | ( | self, | |
exposure, | |||
sources | |||
) |
Display debugging information on the detected dipoles.
exposure | Image the dipoles were measured on |
sources | The set of diaSources that were measured |
Definition at line 396 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.getCentroid | ( | self, | |
source | |||
) |
Get the centroid of the dipole; average of positive and negative lobe.
source | The source that will be examined |
Definition at line 364 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.getOrientation | ( | self, | |
source | |||
) |
Calculate the orientation of dipole; vector from negative to positive lobe.
source | The source that will be examined |
Definition at line 380 of file dipoleMeasurement.py.
def lsst.ip.diffim.dipoleMeasurement.DipoleAnalysis.getSn | ( | self, | |
source | |||
) |
Get the total signal-to-noise of the dipole; total S/N is from positive and negative lobe.
source | The source that will be examined |
Definition at line 348 of file dipoleMeasurement.py.