lsst.fgcmcal  19.0.0-23-g84eeccb+3
Static Public Attributes | List of all members
lsst.fgcmcal.sedterms.SedtermDict Class Reference
Inheritance diagram for lsst.fgcmcal.sedterms.SedtermDict:

Static Public Attributes

 data
 

Detailed Description

A mapping of bands to Sedterms.

To construct a SedtermDict use keyword arguments:
SedtermDict(data=dataDict)
where dataDict is a Python dict of band to Sedterm
For example:

SedtermDict(data={
    'g': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=True, constant=0.25,
                 primaryBand='g', secondaryBand='r', tertiaryBand='i'),
    'r': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=False)
})

This is a subclass of Config.  This follows the form of
`lsst.pipe.tasks.ColortermDict`.

Definition at line 128 of file sedterms.py.

Member Data Documentation

◆ data

lsst.fgcmcal.sedterms.SedtermDict.data
static
Initial value:
= ConfigDictField(
doc="Mapping of band name to Sedterm",
keytype=str,
itemtype=Sedterm,
default={},
)

Definition at line 145 of file sedterms.py.


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