SedtermDict#

class lsst.fgcmcal.SedtermDict(*args, **kw)#

Bases: Config

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.

Attributes Summary

data

Mapping of band name to Sedterm (ConfigDict, default {})

Attributes Documentation

data#

Mapping of band name to Sedterm (ConfigDict, default {})