LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.meas.base.tests.CentroidTransformTestCase Class Reference
Inheritance diagram for lsst.meas.base.tests.CentroidTransformTestCase:
lsst.meas.base.tests.TransformTestCase

Public Member Functions

def setUp (self)
 
def tearDown (self)
 
def testTransform (self, baseNames=None)
 
def testRegistration (self)
 

Public Attributes

 calexp
 

Static Public Attributes

string name = "MeasurementTransformTest"
 
 controlClass = None
 
 algorithmClass = None
 
 transformClass = None
 
tuple flagNames = ("flag",)
 
tuple singleFramePlugins = ()
 
tuple forcedPlugins = ()
 

Detailed Description

Definition at line 926 of file tests.py.

Member Function Documentation

◆ setUp()

def lsst.meas.base.tests.TransformTestCase.setUp (   self)
inherited

Definition at line 772 of file tests.py.

772  def setUp(self):
773  bbox = lsst.geom.Box2I(lsst.geom.Point2I(0, 0), lsst.geom.Point2I(200, 200))
774  self.calexp = TestDataset.makeEmptyExposure(bbox)
775  self._setupTransform()
776 
An integer coordinate rectangle.
Definition: Box.h:55

◆ tearDown()

def lsst.meas.base.tests.TransformTestCase.tearDown (   self)
inherited

Definition at line 777 of file tests.py.

777  def tearDown(self):
778  del self.calexp
779  del self.inputCat
780  del self.mapper
781  del self.transform
782  del self.outputCat
783 

◆ testRegistration()

def lsst.meas.base.tests.TransformTestCase.testRegistration (   self)
inherited
Test that the transformation is appropriately registered.

Definition at line 848 of file tests.py.

848  def testRegistration(self):
849  """Test that the transformation is appropriately registered.
850  """
851  for pluginName in self.singleFramePlugins:
852  self._checkRegisteredTransform(lsst.meas.base.SingleFramePlugin.registry, pluginName)
853  for pluginName in self.forcedPlugins:
854  self._checkRegisteredTransform(lsst.meas.base.ForcedPlugin.registry, pluginName)
855 
856 

◆ testTransform()

def lsst.meas.base.tests.TransformTestCase.testTransform (   self,
  baseNames = None 
)
inherited
Test the transformation on a catalog containing random data.

Parameters
----------
baseNames : iterable of `str`
    Iterable of the initial parts of measurement field names.

Notes
-----
We check that:

- An appropriate exception is raised on an attempt to transform
  between catalogs with different numbers of rows;
- Otherwise, all appropriate conversions are properly appled and that
  flags have been propagated.

The ``baseNames`` argument requires some explanation. This should be
an iterable of the leading parts of the field names for each
measurement; that is, everything that appears before ``_instFlux``,
``_flag``, etc. In the simple case of a single measurement per plugin,
this is simply equal to ``self.name`` (thus measurements are stored as
``self.name + "_instFlux"``, etc). More generally, the developer may
specify whatever iterable they require. For example, to handle
multiple apertures, we could have ``(self.name + "_0", self.name +
"_1", ...)``.

Definition at line 810 of file tests.py.

810  def testTransform(self, baseNames=None):
811  """Test the transformation on a catalog containing random data.
812 
813  Parameters
814  ----------
815  baseNames : iterable of `str`
816  Iterable of the initial parts of measurement field names.
817 
818  Notes
819  -----
820  We check that:
821 
822  - An appropriate exception is raised on an attempt to transform
823  between catalogs with different numbers of rows;
824  - Otherwise, all appropriate conversions are properly appled and that
825  flags have been propagated.
826 
827  The ``baseNames`` argument requires some explanation. This should be
828  an iterable of the leading parts of the field names for each
829  measurement; that is, everything that appears before ``_instFlux``,
830  ``_flag``, etc. In the simple case of a single measurement per plugin,
831  this is simply equal to ``self.name`` (thus measurements are stored as
832  ``self.name + "_instFlux"``, etc). More generally, the developer may
833  specify whatever iterable they require. For example, to handle
834  multiple apertures, we could have ``(self.name + "_0", self.name +
835  "_1", ...)``.
836  """
837  baseNames = baseNames or [self.name]
838  self._populateCatalog(baseNames)
839  self.assertRaises(lsst.pex.exceptions.LengthError, self._runTransform, False)
840  self._runTransform()
841  self._checkOutput(baseNames)
842 
Reports attempts to exceed implementation-defined length limits for some classes.
Definition: Runtime.h:76

Member Data Documentation

◆ algorithmClass

lsst.meas.base.tests.TransformTestCase.algorithmClass = None
staticinherited

Definition at line 759 of file tests.py.

◆ calexp

lsst.meas.base.tests.TransformTestCase.calexp
inherited

Definition at line 774 of file tests.py.

◆ controlClass

lsst.meas.base.tests.TransformTestCase.controlClass = None
staticinherited

Definition at line 758 of file tests.py.

◆ flagNames

tuple lsst.meas.base.tests.TransformTestCase.flagNames = ("flag",)
staticinherited

Definition at line 762 of file tests.py.

◆ forcedPlugins

tuple lsst.meas.base.tests.TransformTestCase.forcedPlugins = ()
staticinherited

Definition at line 770 of file tests.py.

◆ name

string lsst.meas.base.tests.TransformTestCase.name = "MeasurementTransformTest"
staticinherited

Definition at line 747 of file tests.py.

◆ singleFramePlugins

tuple lsst.meas.base.tests.TransformTestCase.singleFramePlugins = ()
staticinherited

Definition at line 769 of file tests.py.

◆ transformClass

lsst.meas.base.tests.TransformTestCase.transformClass = None
staticinherited

Definition at line 760 of file tests.py.


The documentation for this class was generated from the following file: