LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Public Member Functions | Static Public Attributes | List of all members
lsst.afw.geom.xyTransformFactory.RadialXYTransformConfig Class Reference
Inheritance diagram for lsst.afw.geom.xyTransformFactory.RadialXYTransformConfig:

Public Member Functions

def validate
 

Static Public Attributes

tuple coeffs
 

Detailed Description

Definition at line 86 of file xyTransformFactory.py.

Member Function Documentation

def lsst.afw.geom.xyTransformFactory.RadialXYTransformConfig.validate (   self)

Definition at line 93 of file xyTransformFactory.py.

93 
94  def validate(self):
95  if len(self.coeffs) == 0:
96  return
97  if len(self.coeffs) == 1 or self.coeffs[0] != 0 or self.coeffs[1] == 0:
98  raise RuntimeError(
99  "invalid RadialXYTransform coeffs %s: " % (self.coeffs,) \
+ " need len(coeffs)=0 or len(coeffs)>1, coeffs[0]==0, and coeffs[1]!=0")

Member Data Documentation

tuple lsst.afw.geom.xyTransformFactory.RadialXYTransformConfig.coeffs
static
Initial value:
1 = ListField(
2  doc = "Coefficients for the radial polynomial; coeff[0] must be 0",
3  dtype = float,
4  minLength = 1,
5  optional = False,
6  )

Definition at line 87 of file xyTransformFactory.py.


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