RadialTransformConfig

class lsst.afw.geom.RadialTransformConfig

Bases: lsst.pex.config.config.Config

A Config representing a radially symmetric Transform.

Attributes Summary

coeffs Coefficients for the radial polynomial; coeff[0] must be 0 (List, default None)

Methods Summary

validate() !Validate the Config; raise an exception if invalid

Attributes Documentation

coeffs

Coefficients for the radial polynomial; coeff[0] must be 0 (List, default None)

Methods Documentation

validate()

!Validate the Config; raise an exception if invalid

The base class implementation performs type checks on all fields by calling Field.validate().

Complex single-field validation can be defined by deriving new Field types. As syntactic sugar, some derived Field types are defined in this module which handle recursing into sub-configs (ConfigField, ConfigChoiceField)

Inter-field relationships should only be checked in derived Config classes after calling this method, and base validation is complete