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
fieldImpl.cc
Go to the documentation of this file.
1 // -*- lsst-C++ -*-
2 #include <cstring>
3 #include "lsst/meas/extensions/psfex/Field.hh"
4 #undef PI
5 #include "lsst/geom/Point.h"
6 #include "lsst/afw/geom/SkyWcs.h"
7 
8 extern "C" {
9  #include "globals.h"
10 }
11 
12 namespace lsst { namespace meas { namespace extensions { namespace psfex {
13 
14 Field::Field(std::string const& ident) :
15  impl(NULL), _isInitialized(false)
16 {
17  QCALLOC(impl, fieldstruct, 1);
18  impl->next = 0;
19 
20  strcpy(impl->catname, ident.c_str());
21  impl->rcatname = impl->catname;
22 #if 0
23  strncpy(impl->rtcatname, impl->rcatname, sizeof(impl->rtcatname) - 1);
24  strncpy(impl->ident, "??", sizeof(impl->ident) - 1);
25 #elif 1
26  if (!(impl->rcatname = strrchr(impl->catname, '/'))) {
27  impl->rcatname = impl->catname;
28  } else {
29  ++impl->rcatname;
30  }
31 
32  strncpy(impl->rtcatname, impl->rcatname, sizeof(impl->rtcatname) - 1);
33  {
34  char *pstr=strrchr(impl->rtcatname, '.');
35  if (pstr) {
36  *pstr = '\0';
37  }
38  }
39 
40  strncpy(impl->ident, "??", sizeof(impl->ident) - 1);
41 #endif
42 
43  impl->ndet = 0;
44  impl->psf = NULL;
45  impl->wcs = NULL;
46 
47  _finalize();
48 }
49 
50 Field::~Field()
51 {
52  for (int i = 0; i != impl->next; ++i) {
53  free(impl->wcs[i]); // psfex's wcs isn't quite the same as ours ...
54  impl->wcs[i] = NULL; // ... so don't let psfex free it
55  }
56  field_end(impl);
57  impl = NULL;
58 }
59 
60 /************************************************************************************************************/
61 
62 void
63 Field::_finalize(bool force)
64 {
65  if (force || !_isInitialized) {
66  field_init_finalize(impl);
67  _isInitialized = true;
68  }
69 }
70 
71 /************************************************************************************************************/
72 
74 Field::getPsfs() const
75 {
76  if (_psfs.empty()) {
77  _psfs.reserve(impl->next);
78  for (int i = 0; i != impl->next; ++i) {
79  _psfs.push_back(Psf(impl->psf[i]));
80  }
81  }
82 
83  return _psfs;
84 }
85 
86 void
87 Field::addExt(lsst::afw::geom::SkyWcs const& wcs_,
88  int const naxis1, int const naxis2,
89  int const nobj)
90 {
91  QREALLOC(impl->psf, psfstruct *, impl->next + 1);
92  impl->psf[impl->next] = 0;
93  QREALLOC(impl->wcs, wcsstruct *, impl->next + 1);
94  impl->wcs[impl->next] = 0;
95  /*
96  * We're going to fake psfex's wcsstruct object. We only need enough of it for field_locate
97  */
98  QMALLOC(impl->wcs[impl->next], wcsstruct, 1);
99  wcsstruct *wcs = impl->wcs[impl->next];
100 
101  wcs->naxis = 2;
102  wcs->naxisn[0] = naxis1;
103  wcs->naxisn[1] = naxis2;
104 
105  auto const crval = wcs_.getSkyOrigin();
106  // crpix using the FITS standard = pixel origin using the LSST standard + 1
107  auto const crpix = wcs_.getPixelOrigin() + geom::Extent2D(1, 1);
108  auto const cdMatrix = wcs_.getCdMatrix();
109  std::string const cunit("DEG");
110  auto metadata = wcs_.getFitsMetadata();
111  for (int i = 0; i != wcs->naxis; ++i) {
112  auto ifits = i + 1;
113  auto ctype = metadata->getAsString("CTYPE" + std::to_string(ifits));
114  strncpy(wcs->ctype[i], ctype.c_str(), ctype.size() + 1);
115  strncpy(wcs->cunit[i], cunit.c_str(), cunit.size() + 1);
116  wcs->crpix[i] = crpix[i];
117  wcs->crval[i] = crval[i].asDegrees();
118  wcs->cdelt[i] = 1.0; // scale is in the CD matrix (is this even needed?)
119  wcs->crder[i] = 0;
120  wcs->csyer[i] = 0;
121  }
122  for (int i = 0, k = 0; i < 2; ++i) {
123  for (int j = 0; j < 2; ++j, ++k) {
124  wcs->cd[k] = cdMatrix(i, j);
125  }
126  }
127  wcs->lng = 0;
128  wcs->lat = 1;
129  wcs->equinox = 2000;
130 
131  auto center = wcs_.pixelToSky(geom::Point2D(0.5*naxis1, 0.5*naxis2));
132  wcs->wcsscalepos[0] = center.getLongitude().asDegrees();
133  wcs->wcsscalepos[1] = center.getLatitude().asDegrees();
134 
135  double maxradius = 0.0; // Maximum distance to wcsscalepos
136  for (int x = 0; x <= 1; ++x) {
137  for (int y = 0; y <= 1; ++y) {
138  geom::Point2D point(x*naxis1, y*naxis2); // Corner
139  double const radius = center.separation(wcs_.pixelToSky(point)).asDegrees();
140  if (radius > maxradius) {
141  maxradius = radius;
142  }
143  }
144  }
145  wcs->wcsmaxradius = maxradius;
146 
147  impl->ndet += nobj;
148 
149  ++impl->next;
150 }
151 
152 }}}}
double x
table::PointKey< double > crpix
Definition: OldWcs.cc:131
table::PointKey< double > crval
Definition: OldWcs.cc:130
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:71
int y
Definition: SpanSet.cc:49
T c_str(T... args)
A 2-dimensional celestial WCS that transform pixels to ICRS RA/Dec, using the LSST standard for pixel...
Definition: SkyWcs.h:117
Eigen::Matrix2d getCdMatrix(lsst::geom::Point2D const &pixel) const
Get the 2x2 CD matrix at the specified pixel position.
Definition: SkyWcs.cc:198
lsst::geom::SpherePoint pixelToSky(lsst::geom::Point2D const &pixel) const
Compute sky position(s) from pixel position(s)
Definition: SkyWcs.h:334
lsst::geom::SpherePoint getSkyOrigin() const
Get the sky origin, the celestial fiducial point.
Definition: SkyWcs.cc:187
lsst::geom::Point2D getPixelOrigin() const
Get the pixel origin, in pixels, using the LSST convention.
Definition: SkyWcs.h:215
std::shared_ptr< daf::base::PropertyList > getFitsMetadata(bool precise=false) const
Return the WCS as FITS WCS metadata.
Definition: SkyWcs.cc:218
Extent< double, 2 > Extent2D
Definition: Extent.h:400
A base class for image defects.
T reserve(T... args)
T strcpy(T... args)
T strncpy(T... args)
T strrchr(T... args)
T to_string(T... args)