Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+83433b07ee,g16d25e1f1b+23bc9e47ac,g1ec0fe41b4+3ea9d11450,g1fd858c14a+9be2b0f3b9,g2440f9efcc+8c5ae1fdc5,g35bb328faa+8c5ae1fdc5,g4a4af6cd76+d25431c27e,g4d2262a081+c74e83464e,g53246c7159+8c5ae1fdc5,g55585698de+1e04e59700,g56a49b3a55+92a7603e7a,g60b5630c4e+1e04e59700,g67b6fd64d1+3fc8cb0b9e,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g8352419a5c+8c5ae1fdc5,g8852436030+60e38ee5ff,g89139ef638+3fc8cb0b9e,g94187f82dc+1e04e59700,g989de1cb63+3fc8cb0b9e,g9d31334357+1e04e59700,g9f33ca652e+0a83e03614,gabe3b4be73+8856018cbb,gabf8522325+977d9fabaf,gb1101e3267+8b4b9c8ed7,gb89ab40317+3fc8cb0b9e,gc0af124501+57ccba3ad1,gcf25f946ba+60e38ee5ff,gd6cbbdb0b4+1cc2750d2e,gd794735e4e+7be992507c,gdb1c4ca869+be65c9c1d7,gde0f65d7ad+c7f52e58fe,ge278dab8ac+6b863515ed,ge410e46f29+3fc8cb0b9e,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf618743f1b+747388abfa,gf67bdafdda+3fc8cb0b9e,w.2025.18
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
psfImpl.cc
Go to the documentation of this file.
1// -*- lsst-C++ -*-
2#include "boost/format.hpp"
4#include "lsst/meas/extensions/psfex/psf.hh"
5#include "ndarray.h"
6
7#define RETURN_IMAGE_FIELD(NAME, CNAME, SIZE) \
8 ndarray::Array<float,2,2> \
9 NAME() const \
10 { \
11 ndarray::Array<float,2,2>::Index shape = ndarray::makeVector(SIZE[0], SIZE[1]); \
12 ndarray::Array<float,2,2>::Index strides = ndarray::makeVector(1, SIZE[0]); \
13 \
14 return ndarray::external(impl->CNAME, shape, strides); \
15 }
16
17namespace lsst { namespace meas { namespace extensions { namespace psfex {
18
19Context::Context(std::vector<std::string> const& names,
20 std::vector<int> const& group,
21 std::vector<int> const& degree,
22 bool pcexflag
23 )
24{
25 _names = names;
26 int const ndim = names.size();
27 int const ngroup = group.size();
28
29 std::vector<const char *> cnames(ndim);
30 for (int i = 0; i != ndim; ++i) {
31 cnames[i] = names[i].c_str();
32 }
33
34 impl = context_init(const_cast<char **>(&cnames[0]),
35 const_cast<int *>(&group[0]),
36 ndim,
37 const_cast<int *>(&degree[0]),
38 ngroup, (pcexflag ? 1 : 0));
39 _pc_vectors.resize(impl->npc);
40}
41
43 context_end(impl);
44}
45
46std::vector<double> & Context::getPc(int const i) const
47{
48 if (i < 0 || i >= impl->npc) {
50 s1 << "Index " << i << " is out of range 0.." << impl->npc - 1;
51 throw std::out_of_range(s1.str());
52 }
53 if (_pc_vectors[i].empty()) {
54 _pc_vectors[i].reserve(impl->npc);
55 for (int j = 0; j != impl->npc; ++j) {
56 _pc_vectors[i][j] = impl->pc[i*impl->npc + j];
57 }
58 }
59 return _pc_vectors[i];
60}
61
62/************************************************************************************************************/
63
64void Sample::setVig(ndarray::Array<float,2,2> const& img)
65{
66 int const w = img.getSize<0>(), h = img.getSize<1>();
67
68 if (_vigsize[0]*_vigsize[1] != w*h) {
69 throw LSST_EXCEPT(lsst::pex::exceptions::LengthError,
70 str(boost::format("Expected %dx%d array, but was passed %dx%d")
71 % _vigsize[0] % _vigsize[1] % w % h));
72 }
73
74 ndarray::Array<float,1,1> flattened = ndarray::flatten<1>(img);
75 std::copy(flattened.begin(), flattened.end(), impl->vig);
76}
77
78RETURN_IMAGE_FIELD(Sample::getVig, vig, _vigsize)
79RETURN_IMAGE_FIELD(Sample::getVigResi, vigresi, _vigsize)
80RETURN_IMAGE_FIELD(Sample::getVigChi, vigchi, _vigsize)
81RETURN_IMAGE_FIELD(Sample::getVigWeight, vigweight, _vigsize)
82
83/************************************************************************************************************/
84
85Set::Set(Context &c) {
86 impl = init_set(c.impl);
87 impl->nsample = impl->nsamplemax = 0;
88}
89Set::~Set() {
90 end_set(impl);
91}
92
93Sample
94Set::newSample()
95{
96 if (impl->nsample >= impl->nsamplemax) {
97 if (impl->nsamplemax == 0) {
98 malloc_samples(impl, LSAMPLE_DEFSIZE);
99 } else {
100 realloc_samples(impl, (int)(1.62*impl->nsamplemax + 1));
101 }
102 }
103 return Sample(impl->sample[impl->nsample], _recentroid, impl->vigsize);
104}
105
106void
107Set::trimMemory() const
108{
109 setstruct *mutable_impl = const_cast<setstruct *>(impl);
110 realloc_samples(mutable_impl, impl->nsample);
111}
112
113void
114Set::finiSample(Sample const& sample)
115{
116 ++impl->nsample;
117 make_weights(impl, sample.impl);
118 if (sample._recentroid) {
119 recenter_sample(sample.impl, impl, sample._fluxrad);
120 }
121}
122
123/************************************************************************************************************/
124
126#if 0 // we don't own impl
127 psf_end(impl);
128#endif
129}
130
131void
132Psf::build(double x, double y,
133 std::vector<double> const& other)
134{
135 if (!impl->contextoffset) { // we never set context{offset,scale}
136 throw std::out_of_range("psf.contextoffset not set (probably no valid stars) so I can't index it");
137 }
138
139 std::vector<double> pos(2);
140 pos[0] = x; pos[1] = y;
141
142 pos.insert(pos.end(), other.begin(), other.end());
143
144 for (unsigned int i = 0; i != pos.size(); ++i) {
145 pos[i] = (pos[i] - impl->contextoffset[i])/impl->contextscale[i];
146 }
147
148 psf_build(impl, &pos[0]);
149}
150
151RETURN_IMAGE_FIELD(Psf::getLoc, loc, impl->size)
152RETURN_IMAGE_FIELD(Psf::getResi, resi, impl->size)
153
154}}}}
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
T begin(T... args)
T copy(T... args)
T end(T... args)
#define RETURN_IMAGE_FIELD(NAME, CNAME, SIZE)
Definition psfImpl.cc:7
T size(T... args)
T str(T... args)