LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
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,
22 bool pcexflag
23 )
24{
25 _names = names;
26 int const ndim = names.size();
27 int const ngroup = group.size();
28
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
42Context::~Context() {
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) {
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
125Psf::~Psf() {
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}}}}
double x
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
int y
Definition: SpanSet.cc:48
T begin(T... args)
Reports attempts to exceed implementation-defined length limits for some classes.
Definition: Runtime.h:76
T copy(T... args)
T end(T... args)
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:174
A base class for image defects.
#define RETURN_IMAGE_FIELD(NAME, CNAME, SIZE)
Definition: psfImpl.cc:7
T size(T... args)
double w
Definition: CoaddPsf.cc:69
table::Key< int > ndim
Definition: PsfexPsf.cc:325
table::Key< int > ngroup
Definition: PsfexPsf.cc:326
table::Key< table::Array< int > > degree
Definition: PsfexPsf.cc:360
table::Key< table::Array< int > > group
Definition: PsfexPsf.cc:359
T str(T... args)