LSSTApplications  8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
LSSTDataManagementBasePackage
Color.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
7 #ifndef LSST_AFW_IMAGE_COLOR_H
8 #define LSST_AFW_IMAGE_COLOR_H
9 
10 #include <cmath>
11 #include <limits>
12 #include "lsst/utils/ieee.h"
13 #include "lsst/afw/image/Filter.h"
14 
15 namespace lsst {
16 namespace afw {
17 namespace image {
18 
28 class Color {
29 public :
30  explicit Color(double g_r=std::numeric_limits<double>::quiet_NaN()) : _g_r(g_r) {}
31 
33  bool isIndeterminate() const { return utils::isnan(_g_r); }
34 
36 
46  bool operator==(Color const & other) const {
47  return (isIndeterminate() && other.isIndeterminate()) || other._g_r == _g_r;
48  }
49  bool operator!=(Color const & other) const { return !operator==(other); }
51 
54  double getLambdaEff(Filter const&
55  ) const { return 1000*_g_r; }
56 private :
57  double _g_r;
58 };
59 
60 }}} // lsst::afw::image
61 
62 #endif
double getLambdaEff(Filter const &) const
Definition: Color.h:54
int isnan(T t)
Definition: ieee.h:110
table::Key< table::Array< Kernel::Pixel > > image
Definition: FixedKernel.cc:117
Color(double g_r=std::numeric_limits< double >::quiet_NaN())
Definition: Color.h:30
bool operator!=(Color const &other) const
Definition: Color.h:49
Holds an integer identifier for an LSST filter.
Definition: Filter.h:107
bool isIndeterminate() const
Whether the color is the special value that indicates that it is unspecified.
Definition: Color.h:33
bool operator==(Color const &other) const
Definition: Color.h:46
Class encapsulating an identifier for an LSST filter.