|
lsst.pipe.tasks
15.0-7-g6bb3a066+1
|
Colorterm correction for one pair of filters. More...
Public Member Functions | |
| def | transformSource (self, source) |
| Transform the brightness of a source. More... | |
| def | transformMags (self, primary, secondary) |
| Transform brightness. More... | |
| def | propagateFluxErrors (self, primaryFluxErr, secondaryFluxErr) |
Static Public Attributes | |
| primary = Field(dtype=str, doc="name of primary filter") | |
| secondary = Field(dtype=str, doc="name of secondary filter") | |
| c0 = Field(dtype=float, default=0.0, doc="Constant parameter") | |
| c1 = Field(dtype=float, default=0.0, doc="First-order parameter") | |
| c2 = Field(dtype=float, default=0.0, doc="Second-order parameter") | |
Colorterm correction for one pair of filters.
The transformed magnitude p' is given by p' = primary + c0 + c1*(primary - secondary) + c2*(primary - secondary)**2
To construct a Colorterm, use keyword arguments: Colorterm(primary=primaryFilterName, secondary=secondaryFilterName, c0=c0value, c1=c1Coeff, c2=c2Coeff) where c0-c2 are optional. For example (omitting c2): Colorterm(primary="g", secondary="r", c0=-0.00816446, c1=-0.08366937)
This is subclass of Config. That is a bit of a hack to make it easy to store the data in an appropriate obs_* package as a config override file. In the long term some other means of persistence will be used, at which point the constructor can be simplified to not require keyword arguments. (Fixing DM-2831 will also allow making a custom constructor).
Definition at line 39 of file colorterms.py.
| def lsst.pipe.tasks.colorterms.Colorterm.propagateFluxErrors | ( | self, | |
| primaryFluxErr, | |||
| secondaryFluxErr | |||
| ) |
Definition at line 80 of file colorterms.py.
| def lsst.pipe.tasks.colorterms.Colorterm.transformMags | ( | self, | |
| primary, | |||
| secondary | |||
| ) |
Transform brightness.
| [in] | primary | brightness in primary filter (magnitude) |
| [in] | secondary | brightness in secondary filter (magnitude) |
Definition at line 70 of file colorterms.py.
| def lsst.pipe.tasks.colorterms.Colorterm.transformSource | ( | self, | |
| source | |||
| ) |
Transform the brightness of a source.
| [in] | source | source whose brightness is to be converted; must support get(filterName) (e.g. source.get("r")) method, as do afw::table::Source and dicts. |
Definition at line 61 of file colorterms.py.
|
static |
Definition at line 57 of file colorterms.py.
|
static |
Definition at line 58 of file colorterms.py.
|
static |
Definition at line 59 of file colorterms.py.
|
static |
Definition at line 55 of file colorterms.py.
|
static |
Definition at line 56 of file colorterms.py.
1.8.13