RadialTransformConfig#

class lsst.afw.geom.RadialTransformConfig(*args, **kw)#

Bases: Config

A Config representing a radially symmetric Transform.

See Also#

lsst.afw.geom.makeRadialTransform

Attributes Summary

coeffs

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

Methods Summary

validate()

Validate the Config, raising an exception if invalid.

Attributes Documentation

coeffs#

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

Methods Documentation

validate()#

Validate the Config, raising an exception if invalid.

Raises#

lsst.pex.config.FieldValidationError

Raised if verification fails.

Notes#

The base class implementation performs type checks on all fields by calling their validate methods.

Complex single-field validation can be defined by deriving new Field types. For convenience, some derived lsst.pex.config.Field-types (ConfigField and ConfigChoiceField) are defined in lsst.pex.config that handle recursing into subconfigs.

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