LSST Applications  21.0.0+04719a4bac,21.0.0-1-ga51b5d4+f5e6047307,21.0.0-11-g2b59f77+a9c1acf22d,21.0.0-11-ga42c5b2+86977b0b17,21.0.0-12-gf4ce030+76814010d2,21.0.0-13-g1721dae+760e7a6536,21.0.0-13-g3a573fe+768d78a30a,21.0.0-15-g5a7caf0+f21cbc5713,21.0.0-16-g0fb55c1+b60e2d390c,21.0.0-19-g4cded4ca+71a93a33c0,21.0.0-2-g103fe59+bb20972958,21.0.0-2-g45278ab+04719a4bac,21.0.0-2-g5242d73+3ad5d60fb1,21.0.0-2-g7f82c8f+8babb168e8,21.0.0-2-g8f08a60+06509c8b61,21.0.0-2-g8faa9b5+616205b9df,21.0.0-2-ga326454+8babb168e8,21.0.0-2-gde069b7+5e4aea9c2f,21.0.0-2-gecfae73+1d3a86e577,21.0.0-2-gfc62afb+3ad5d60fb1,21.0.0-25-g1d57be3cd+e73869a214,21.0.0-3-g357aad2+ed88757d29,21.0.0-3-g4a4ce7f+3ad5d60fb1,21.0.0-3-g4be5c26+3ad5d60fb1,21.0.0-3-g65f322c+e0b24896a3,21.0.0-3-g7d9da8d+616205b9df,21.0.0-3-ge02ed75+a9c1acf22d,21.0.0-4-g591bb35+a9c1acf22d,21.0.0-4-g65b4814+b60e2d390c,21.0.0-4-gccdca77+0de219a2bc,21.0.0-4-ge8a399c+6c55c39e83,21.0.0-5-gd00fb1e+05fce91b99,21.0.0-6-gc675373+3ad5d60fb1,21.0.0-64-g1122c245+4fb2b8f86e,21.0.0-7-g04766d7+cd19d05db2,21.0.0-7-gdf92d54+04719a4bac,21.0.0-8-g5674e7b+d1bd76f71f,master-gac4afde19b+a9c1acf22d,w.2021.13
LSST Data Management Base Package
sedterms.py
Go to the documentation of this file.
1 # This file is part of fgcmcal.
2 #
3 # Developed for the LSST Data Management System.
4 # This product includes software developed by the LSST Project
5 # (https://www.lsst.org).
6 # See the COPYRIGHT file at the top-level directory of this distribution
7 # for details of code ownership.
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <https://www.gnu.org/licenses/>.
21 """Configuration for SED terms in fgcmcal.
22 Analogous to colorterms.
23 """
24 
25 from lsst.pex.config import Config, Field, ConfigDictField
26 
27 __all__ = ["Sedterm", "SedtermDict", "Sedboundaryterm", "SedboundarytermDict"]
28 
29 
31  """SED boundary term for a pair of bands.
32 
33  The SED slope (in flux units) at the boundary between two bands is given by:
34 
35  S = -0.921 * (primary - secondary) / (lambda_primary - lambda_secondary)
36 
37  To construct a Sedboundaryterm, use keyword arguments:
38  Sedboundaryterm(primary=primaryBandName, secondary=secondaryBandName)
39 
40  This is a subclass of Config. This follows the form of
41  `lsst.pipe.tasks.Colorterm`.
42  """
43  primary = Field(dtype=str, doc="name of primary band")
44  secondary = Field(dtype=str, doc="name of secondary band")
45 
46 
48  """A mapping of Sedboundaryterm name to Sedterm.
49 
50  To construct a SedboundarytermDict use keyword arguments:
51  SedboundarytermDict(data=dataDict)
52  where dataDict is a Python dict of name: Sedterm
53  For example::
54 
55  SedboundarytermDict(data={
56  'gr': Sedboundaryterm(primary="g", secondary="r"),
57  'ri': Sedboundaryterm(primary="r", secondary="i"),
58  })
59 
60  This is a subclass of Config. This follows the form of
61  `lsst.pipe.tasks.ColortermDict`.
62  """
64  doc="Mapping of Sedboundary term name to Sedboundaryterm",
65  keytype=str,
66  itemtype=Sedboundaryterm,
67  default={},
68  )
69 
70 
71 class Sedterm(Config):
72  """SED term for a single band.
73 
74  The SED slope (in flux units) in the middle of a band is computed either
75  as an "interpolated" or "extrapolated" computation. See Burke et al. 2018
76  Appendix A (https://ui.adsabs.harvard.edu/abs/2018AJ....155...41B).
77 
78  For interpolation, with a secondary term::
79 
80  F'_nu ~ constant * (primaryTerm + secondaryTerm) / 2.0
81 
82  For interpolation, without a secondary term::
83 
84  F'_nu ~ constant * primaryTerm
85 
86  For extrapolation::
87 
88  F'_nu ~ primaryTerm + constant * (((lambda_primaryBand - lambda_secondaryBand) /
89  (lambda_primaryBand - lambda_tertiaryBand)) *
90  (primaryTerm - secondaryTerm))
91 
92  where primaryTerm and secondaryTerm are names from a `SedboundarytermDict`, and
93  primaryBand, secondaryBand, and tertiaryBand are band names.
94 
95  To construct a Sedterm, use keyword arguments::
96 
97  Sedterm(primaryTerm=primaryTermName, secondaryTerm=secondaryTermName,
98  extrapolated=False, constant=1.0)
99 
100  or::
101 
102  Sedterm(primaryTerm=primaryTermName, secondaryTerm=secondaryTermName,
103  extrapolated=True, constant=1.0, primaryBand=primaryBandName,
104  secondaryBand=secondaryBandName, tertiaryBand=tertiaryBandName)
105 
106  This is a subclass of Config. This follows the form of
107  `lsst.pipe.tasks.Colorterm`.
108  """
109  primaryTerm = Field(dtype=str, doc="Name of primary Sedboundaryterm")
110  secondaryTerm = Field(dtype=str, default=None, optional=True,
111  doc="Name of secondary Sedboundaryterm")
112  extrapolated = Field(dtype=bool, default=False, doc="Extrapolate to compute SED slope")
113  constant = Field(dtype=float, default=1.0, doc="Adjustment constant for SED slope")
114  primaryBand = Field(dtype=str, default=None, optional=True,
115  doc="Primary band name for extrapolation")
116  secondaryBand = Field(dtype=str, default=None, optional=True,
117  doc="Secondary band name for extrapolation")
118  tertiaryBand = Field(dtype=str, default=None, optional=True,
119  doc="Tertiary band name for extrapolation")
120 
121  def validate(self):
122  Config.validate(self)
123  if self.extrapolatedextrapolated:
124  if self.primaryBandprimaryBand is None or \
125  self.secondaryBandsecondaryBand is None or \
126  self.tertiaryBandtertiaryBand is None:
127  raise RuntimeError("extrapolated requires primaryBand, secondaryBand, and "
128  "tertiaryBand are provided.")
129 
130 
132  """A mapping of bands to Sedterms.
133 
134  To construct a SedtermDict use keyword arguments::
135 
136  SedtermDict(data=dataDict)
137 
138  where dataDict is a Python dict of band to Sedterm
139  For example::
140 
141  SedtermDict(data={
142  'g': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=True, constant=0.25,
143  primaryBand='g', secondaryBand='r', tertiaryBand='i'),
144  'r': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=False)
145  })
146 
147  This is a subclass of Config. This follows the form of
148  `lsst.pipe.tasks.ColortermDict`.
149  """
151  doc="Mapping of band name to Sedterm",
152  keytype=str,
153  itemtype=Sedterm,
154  default={},
155  )