lsst.jointcal  14.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Static Public Attributes | List of all members
lsst.jointcal.jointcal.JointcalConfig Class Reference
Inheritance diagram for lsst.jointcal.jointcal.JointcalConfig:

Public Member Functions

def setDefaults
 

Static Public Attributes

tuple doAstrometry
 
tuple doPhotometry
 
tuple coaddName
 
tuple posError
 
tuple matchCut
 
tuple minMeasurements
 
tuple polyOrder
 
tuple astrometryModel
 
tuple photometryModel
 
tuple astrometryRefObjLoader
 
tuple photometryRefObjLoader
 
tuple sourceSelector
 

Detailed Description

Config for jointcalTask

Definition at line 81 of file jointcal.py.

Member Function Documentation

def lsst.jointcal.jointcal.JointcalConfig.setDefaults (   self)

Definition at line 147 of file jointcal.py.

Member Data Documentation

tuple lsst.jointcal.jointcal.JointcalConfig.astrometryModel
static
Initial value:
1 = pexConfig.ChoiceField(
2  doc="Type of model to fit to astrometry",
3  dtype=str,
4  default="simplePoly",
5  allowed={"simplePoly": "One polynomial per ccd",
6  "constrainedPoly": "One polynomial per ccd, and one polynomial per visit"}
7  )

Definition at line 120 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.astrometryRefObjLoader
static
Initial value:
1 = pexConfig.ConfigurableField(
2  target=LoadAstrometryNetObjectsTask,
3  doc="Reference object loader for astrometric fit",
4  )

Definition at line 134 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.coaddName
static
Initial value:
1 = pexConfig.Field(
2  doc="Type of coadd, typically deep or goodSeeing",
3  dtype=str,
4  default="deep"
5  )

Definition at line 94 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.doAstrometry
static
Initial value:
1 = pexConfig.Field(
2  doc="Fit astrometry and write the fitted result.",
3  dtype=bool,
4  default=True
5  )

Definition at line 84 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.doPhotometry
static
Initial value:
1 = pexConfig.Field(
2  doc="Fit photometry and write the fitted result.",
3  dtype=bool,
4  default=True
5  )

Definition at line 89 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.matchCut
static
Initial value:
1 = pexConfig.Field(
2  doc="Matching radius between fitted and reference stars (arcseconds)",
3  dtype=float,
4  default=3.0,
5  )

Definition at line 105 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.minMeasurements
static
Initial value:
1 = pexConfig.Field(
2  doc="Minimum number of associated measured stars for a fitted star to be included in the fit",
3  dtype=int,
4  default=2,
5  )

Definition at line 110 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.photometryModel
static
Initial value:
1 = pexConfig.ChoiceField(
2  doc="Type of model to fit to photometry",
3  dtype=str,
4  default="simple",
5  allowed={"simple": "One constant zeropoint per ccd and visit",
6  "constrained": "Constrained zeropoint per ccd, and one polynomial per visit"}
7  )

Definition at line 127 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.photometryRefObjLoader
static
Initial value:
1 = pexConfig.ConfigurableField(
2  target=LoadAstrometryNetObjectsTask,
3  doc="Reference object loader for photometric fit",
4  )

Definition at line 138 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.polyOrder
static
Initial value:
1 = pexConfig.Field(
2  doc="Polynomial order for fitting distorsion",
3  dtype=int,
4  default=3,
5  )

Definition at line 115 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.posError
static
Initial value:
1 = pexConfig.Field(
2  doc="Constant term for error on position (in pixel unit)",
3  dtype=float,
4  default=0.02,
5  )

Definition at line 99 of file jointcal.py.

tuple lsst.jointcal.jointcal.JointcalConfig.sourceSelector
static
Initial value:
1 = sourceSelectorRegistry.makeField(
2  doc="How to select sources for cross-matching",
3  default="astrometry"
4  )

Definition at line 142 of file jointcal.py.


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