lsst.fgcmcal g5ec818987f+a4bd4c0d33
Loading...
Searching...
No Matches
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 131 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 150 of file sedterms.py.


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