LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Protected Member Functions | Static Protected Attributes | List of all members
lsst.pipe.tasks.functors.Color Class Reference
Inheritance diagram for lsst.pipe.tasks.functors.Color:
lsst.pipe.tasks.functors.Functor

Public Member Functions

 __init__ (self, col, filt2, filt1, **kwargs)
 
 filt (self)
 
 filt (self, filt)
 
 columns (self)
 
 multilevelColumns (self, parq, **kwargs)
 
 name (self)
 
 shortname (self)
 

Public Attributes

 col
 
 filt2
 
 filt1
 
 mag2
 
 mag1
 
 dataset
 

Protected Member Functions

 _func (self, df)
 

Static Protected Attributes

str _defaultDataset = 'forced_src'
 
tuple _dfLevels = ('band', 'column')
 
bool _defaultNoDup = True
 

Detailed Description

Compute the color between two filters.

Computes color by initializing two different `Mag` functors based on the
``col`` and filters provided, and then returning the difference.

This is enabled by the `_func` method expecting a DataFrame with a
multilevel column index, with both ``'band'`` and ``'column'``, instead of
just ``'column'``, which is the `Functor` default.
This is controlled by the `_dfLevels` attribute.

Also of note, the default dataset for `Color` is ``forced_src'``, whereas
for `Mag` it is ``'meas'``.

Parameters
----------
col : str
    Name of the flux column from which to compute; same as would be passed
    to `~lsst.pipe.tasks.functors.Mag`.

filt2, filt1 : str
    Filters from which to compute magnitude difference.
    Color computed is ``Mag(filt2) - Mag(filt1)``.

Definition at line 903 of file functors.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.pipe.tasks.functors.Color.__init__ ( self,
col,
filt2,
filt1,
** kwargs )

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 931 of file functors.py.

931 def __init__(self, col, filt2, filt1, **kwargs):
932 self.col = fluxName(col)
933 if filt2 == filt1:
934 raise RuntimeError("Cannot compute Color for %s: %s - %s " % (col, filt2, filt1))
935 self.filt2 = filt2
936 self.filt1 = filt1
937
938 self.mag2 = Mag(col, filt=filt2, **kwargs)
939 self.mag1 = Mag(col, filt=filt1, **kwargs)
940
941 super().__init__(**kwargs)
942

Member Function Documentation

◆ _func()

lsst.pipe.tasks.functors.Color._func ( self,
df )
protected

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 951 of file functors.py.

951 def _func(self, df):
952 mag2 = self.mag2._func(df[self.filt2])
953 mag1 = self.mag1._func(df[self.filt1])
954 return mag2 - mag1
955

◆ columns()

lsst.pipe.tasks.functors.Color.columns ( self)
Columns required to perform calculation.

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 957 of file functors.py.

957 def columns(self):
958 return [self.mag1.col, self.mag2.col]
959

◆ filt() [1/2]

lsst.pipe.tasks.functors.Color.filt ( self)

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 944 of file functors.py.

944 def filt(self):
945 return None
946

◆ filt() [2/2]

lsst.pipe.tasks.functors.Color.filt ( self,
filt )

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 948 of file functors.py.

948 def filt(self, filt):
949 pass
950

◆ multilevelColumns()

lsst.pipe.tasks.functors.Color.multilevelColumns ( self,
data,
** columnIndex )
Returns columns needed by functor from multilevel dataset.

To access tables with multilevel column structure, the
`~lsst.daf.butler.DeferredDatasetHandle` or
`~lsst.pipe.base.InMemoryDatasetHandle` needs to be passed
either a list of tuples or a dictionary.

Parameters
----------
data : various
    The data as either `~lsst.daf.butler.DeferredDatasetHandle`, or
    `~lsst.pipe.base.InMemoryDatasetHandle`.
columnIndex (optional): pandas `~pandas.Index` object
    Either passed or read in from
    `~lsst.daf.butler.DeferredDatasetHandle`.
`returnTuple` : `bool`
    If true, then return a list of tuples rather than the column
    dictionary specification.
    This is set to `True` by `CompositeFunctor` in order to be able to
    combine columns from the various component functors.

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 960 of file functors.py.

960 def multilevelColumns(self, parq, **kwargs):
961 return [(self.dataset, self.filt1, self.col), (self.dataset, self.filt2, self.col)]
962

◆ name()

lsst.pipe.tasks.functors.Color.name ( self)

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 964 of file functors.py.

964 def name(self):
965 return f'{self.filt2} - {self.filt1} ({self.col})'
966
table::Key< std::string > name
Definition Amplifier.cc:116

◆ shortname()

lsst.pipe.tasks.functors.Color.shortname ( self)
Short name of functor (suitable for column name/dict key).

Reimplemented from lsst.pipe.tasks.functors.Functor.

Definition at line 968 of file functors.py.

968 def shortname(self):
969 return f"{self.col}_{self.filt2.replace('-', '')}m{self.filt1.replace('-', '')}"
970
971

Member Data Documentation

◆ _defaultDataset

str lsst.pipe.tasks.functors.Color._defaultDataset = 'forced_src'
staticprotected

Definition at line 927 of file functors.py.

◆ _defaultNoDup

bool lsst.pipe.tasks.functors.Color._defaultNoDup = True
staticprotected

Definition at line 929 of file functors.py.

◆ _dfLevels

tuple lsst.pipe.tasks.functors.Color._dfLevels = ('band', 'column')
staticprotected

Definition at line 928 of file functors.py.

◆ col

lsst.pipe.tasks.functors.Color.col

Definition at line 932 of file functors.py.

◆ dataset

lsst.pipe.tasks.functors.Color.dataset

Definition at line 961 of file functors.py.

◆ filt1

lsst.pipe.tasks.functors.Color.filt1

Definition at line 936 of file functors.py.

◆ filt2

lsst.pipe.tasks.functors.Color.filt2

Definition at line 935 of file functors.py.

◆ mag1

lsst.pipe.tasks.functors.Color.mag1

Definition at line 939 of file functors.py.

◆ mag2

lsst.pipe.tasks.functors.Color.mag2

Definition at line 938 of file functors.py.


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