FilterDefinition¶
- class lsst.obs.base.FilterDefinition(physical_filter: str, band: str | None = None, doc: str | None = None, afw_name: str | None = None, alias: Set[str] = frozenset({}))¶
- Bases: - object- The definition of an instrument’s filter bandpass. - This class is used to declare - physical_filterand- bandinformation for an instrument.- This class is likely temporary, until we have a better versioned filter definition system that includes complete transmission information. - Attributes Summary - If not None, the name of the - Filterobject.- Alternate names for this filter. - The generic name of a filter not associated with a particular instrument (e.g. - A short description of this filter, possibly with a link to more information. - Methods Summary - Create a complete FilterLabel for this filter. - Attributes Documentation - afw_name: str | None = None¶
- If not None, the name of the - Filterobject.- This is distinct from physical_filter and band to maintain backwards compatibility in some obs packages. For example, for HSC there are two distinct - rand- ifilters, named- r/r2and- i/i2.
 - alias: Set[str] = frozenset({})¶
- Alternate names for this filter. These are added to the - Filteralias list.
 - band: str | None = None¶
- The generic name of a filter not associated with a particular instrument (e.g. - rfor the SDSS Gunn r-band, which could be on SDSS, LSST, or HSC).- Not all filters have an abstract filter: engineering or test filters may not have a generically-termed filter name. - If specified and if - afw_nameis None, this is used as the- Filter- namefield, otherwise it is added to the list of- Filteraliases.
 - doc: str | None = None¶
- A short description of this filter, possibly with a link to more information. 
 - Methods Documentation - makeFilterLabel() FilterLabel¶
- Create a complete FilterLabel for this filter.