-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathSBProfile.cpp
638 lines (578 loc) · 23.9 KB
/
SBProfile.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
/* -*- c++ -*-
* Copyright (c) 2012-2023 by the GalSim developers team on GitHub
* https://github.com/GalSim-developers
*
* This file is part of GalSim: The modular galaxy image simulation toolkit.
* https://github.com/GalSim-developers/GalSim
*
* GalSim is free software: redistribution and use in source and binary forms,
* with or without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions, and the disclaimer given in the accompanying LICENSE
* file.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the disclaimer given in the documentation
* and/or other materials provided with the distribution.
*/
//#define DEBUGLOGGING
#include <fstream>
#include "SBProfile.h"
#include "SBTransform.h"
#include "SBProfileImpl.h"
#include "math/Angle.h"
// There are three levels of verbosity which can be helpful when debugging,
// which are written as dbg, xdbg, xxdbg (all defined in Std.h).
// It's Mike's way to have debug statements in the code that are really easy to turn
// on and off.
//
// If DEBUGLOGGING is #defined, then these write out to *dbgout, according to the value
// of verbose_level.
// dbg requires verbose_level >= 1
// xdbg requires verbose_level >= 2
// xxdbg requires verbose_level >= 3
//
// If DEBUGLOGGING is not defined, the all three becomes just `if (false) (*dbgout)`,
// so the compiler parses the statement fine, but trivially optimizes the code away,
// so there is no efficiency hit from leaving them in the code.
#ifndef DEBUGLOGGING
// Apparently not all compilers optimize away the if (false) (*dbgout) lines.
// That can cause errors when linking. cf. #1313.
// This fixes the problem by providing an actual dbgout object that doesn't write anything.
std::ostream* make_global_dbgout() {
static std::ofstream dbgout_ofstream;
dbgout_ofstream.setstate(std::ios_base::badbit);
return &dbgout_ofstream;
}
std::ostream* dbgout = make_global_dbgout();
#endif
namespace galsim {
SBProfile::SBProfile() {}
SBProfile::SBProfile(const SBProfile& rhs) : _pimpl(rhs._pimpl) {}
SBProfile& SBProfile::operator=(const SBProfile& rhs)
{ _pimpl = rhs._pimpl; return *this; }
SBProfile::~SBProfile()
{
// Not strictly necessary, but it sets the ptr to 0, so if somehow someone
// manages to use an SBProfile after it was deleted, the assert(_pimpl.get())
// will trigger an exception.
_pimpl.reset();
}
GSParams SBProfile::getGSParams() const
{
assert(_pimpl.get());
return _pimpl->gsparams;
}
double SBProfile::xValue(const Position<double>& p) const
{
assert(_pimpl.get());
return _pimpl->xValue(p);
}
std::complex<double> SBProfile::kValue(const Position<double>& k) const
{
assert(_pimpl.get());
return _pimpl->kValue(k);
}
void SBProfile::getXRange(double& xmin, double& xmax, std::vector<double>& splits) const
{
assert(_pimpl.get());
_pimpl->getXRange(xmin,xmax,splits);
}
void SBProfile::getYRange(double& ymin, double& ymax, std::vector<double>& splits) const
{
assert(_pimpl.get());
_pimpl->getYRange(ymin,ymax,splits);
}
void SBProfile::getYRangeX(
double x, double& ymin, double& ymax, std::vector<double>& splits) const
{
assert(_pimpl.get());
_pimpl->getYRangeX(x,ymin,ymax,splits);
}
double SBProfile::maxK() const
{
assert(_pimpl.get());
return _pimpl->maxK();
}
double SBProfile::stepK() const
{
assert(_pimpl.get());
return _pimpl->stepK();
}
bool SBProfile::isAxisymmetric() const
{
assert(_pimpl.get());
return _pimpl->isAxisymmetric();
}
bool SBProfile::hasHardEdges() const
{
assert(_pimpl.get());
return _pimpl->hasHardEdges();
}
bool SBProfile::isAnalyticX() const
{
assert(_pimpl.get());
return _pimpl->isAnalyticX();
}
bool SBProfile::isAnalyticK() const
{
assert(_pimpl.get());
return _pimpl->isAnalyticK();
}
Position<double> SBProfile::centroid() const
{
assert(_pimpl.get());
return _pimpl->centroid();
}
double SBProfile::getFlux() const
{
assert(_pimpl.get());
return _pimpl->getFlux();
}
double SBProfile::maxSB() const
{
assert(_pimpl.get());
return _pimpl->maxSB();
}
void SBProfile::shoot(PhotonArray& photons, BaseDeviate rng) const
{
assert(_pimpl.get());
return _pimpl->shoot(photons,rng);
}
double SBProfile::getPositiveFlux() const
{
assert(_pimpl.get());
return _pimpl->getPositiveFlux();
}
double SBProfile::getNegativeFlux() const
{
assert(_pimpl.get());
return _pimpl->getNegativeFlux();
}
SBProfile::SBProfile(SBProfileImpl* pimpl) : _pimpl(pimpl) {}
SBProfile::SBProfileImpl::SBProfileImpl(const GSParams& _gsparams) :
gsparams(_gsparams) {}
SBProfile::SBProfileImpl* SBProfile::GetImpl(const SBProfile& rhs)
{ return rhs._pimpl.get(); }
SBTransform SBProfile::transform(double dudx, double dudy, double dvdx, double dvdy) const
{
double jac[4] = {dudx, dudy, dvdx, dvdy};
return SBTransform(*this, jac, Position<double>(0,0), 1., getGSParams());
}
//
// Common methods of Base Class "SBProfile"
//
int SBProfile::getGoodImageSize(double dx) const
{
dbg<<"Start getGoodImageSize\n";
// Find a good size based on dx and stepK
double Nd = 2.*M_PI/(dx*stepK());
dbg<<"Nd = "<<Nd<<std::endl;
// Make it an integer
// Some slop to keep from getting extra pixels due to roundoff errors in calculations.
int N = int(std::ceil(Nd*(1.-1.e-12)));
dbg<<"N = "<<N<<std::endl;
// Round up to an even value
N = 2*( (N+1)/2);
dbg<<"N => "<<N<<std::endl;
return N;
}
// Most derived classes override these functions, since there are usually (at least minor)
// efficiency gains from doing so. But in some cases, these straightforward impleentations
// are perfectly fine.
template <typename T>
void SBProfile::SBProfileImpl::defaultFillXImage(ImageView<T> im,
double x0, double dx, int izero,
double y0, double dy, int jzero) const
{
dbg<<"SBProfile fillXImage\n";
dbg<<"x = "<<x0<<" + i * "<<dx<<", izero = "<<izero<<std::endl;
dbg<<"y = "<<y0<<" + j * "<<dy<<", jzero = "<<jzero<<std::endl;
const int m = im.getNCol();
const int n = im.getNRow();
T* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,y0+=dy,ptr+=skip) {
double x = x0;
for (int i=0; i<m; ++i,x+=dx)
*ptr++ = xValue(Position<double>(x,y0));
}
}
template <typename T>
void SBProfile::SBProfileImpl::defaultFillXImage(ImageView<T> im,
double x0, double dx, double dxy,
double y0, double dy, double dyx) const
{
dbg<<"SBProfile fillXImage\n";
dbg<<"x = "<<x0<<" + i * "<<dx<<" + j * "<<dxy<<std::endl;
dbg<<"y = "<<y0<<" + i * "<<dyx<<" + j * "<<dy<<std::endl;
const int m = im.getNCol();
const int n = im.getNRow();
T* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,x0+=dxy,y0+=dy,ptr+=skip) {
double x = x0;
double y = y0;
for (int i=0; i<m; ++i,x+=dx,y+=dyx)
*ptr++ = xValue(Position<double>(x,y));
}
}
template <typename T>
void SBProfile::SBProfileImpl::defaultFillKImage(ImageView<std::complex<T> > im,
double kx0, double dkx, int izero,
double ky0, double dky, int jzero) const
{
dbg<<"SBProfile fillKImage\n";
dbg<<"kx = "<<kx0<<" + i * "<<dkx<<", izero = "<<izero<<std::endl;
dbg<<"ky = "<<ky0<<" + j * "<<dky<<", jzero = "<<jzero<<std::endl;
const int m = im.getNCol();
const int n = im.getNRow();
std::complex<T>* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,ky0+=dky,ptr+=skip) {
double kx = kx0;
for (int i=0; i<m; ++i,kx+=dkx)
*ptr++ = kValue(Position<double>(kx,ky0));
}
}
template <typename T>
void SBProfile::SBProfileImpl::defaultFillKImage(ImageView<std::complex<T> > im,
double kx0, double dkx, double dkxy,
double ky0, double dky, double dkyx) const
{
dbg<<"SBProfile fillKImage\n";
dbg<<"kx = "<<kx0<<" + i * "<<dkx<<" + j * "<<dkxy<<std::endl;
dbg<<"ky = "<<ky0<<" + i * "<<dkyx<<" + j * "<<dky<<std::endl;
const int m = im.getNCol();
const int n = im.getNRow();
std::complex<T>* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,kx0+=dkxy,ky0+=dky,ptr+=skip) {
double kx = kx0;
double ky = ky0;
for (int i=0; i<m; ++i,kx+=dkx,ky+=dkyx)
*ptr++ = kValue(Position<double>(kx,ky));
}
}
template <typename T>
void SBProfile::draw(ImageView<T> image, double imscale,
double* jac, double xoff, double yoff, double flux_ratio) const
{
dbg<<"Start plainDraw"<<std::endl;
dbg<<"bounds = "<<image.getBounds()<<std::endl;
dbg<<"imscale = "<<imscale<<std::endl;
dbg<<"offset = "<<xoff<<','<<yoff<<std::endl;
dbg<<"flux_ratio = "<<flux_ratio<<std::endl;
assert(_pimpl.get());
assert(image.getStep() == 1);
const int m = image.getNCol();
const int n = image.getNRow();
int xmin = image.getXMin();
int ymin = image.getYMin();
int izero, jzero;
double x0, y0;
if (xoff == 0.) {
x0 = xmin*imscale;
izero = xmin < 0 ? -xmin : 0;
} else {
x0 = xmin*imscale - xoff;
izero = int(-x0/imscale+0.5);
if (std::abs(x0 + izero*imscale) > 1.e-10 || izero < 0 || izero >= m) izero = 0;
}
if (yoff == 0.) {
y0 = ymin*imscale;
jzero = ymin < 0 ? -ymin : 0;
} else {
y0 = ymin*imscale - yoff;
jzero = int(-y0/imscale+0.5);
if (std::abs(y0 + jzero*imscale) > 1.e-10 || jzero < 0 || jzero >= n) jzero = 0;
}
if (!jac) {
dbg<<"no jac\n";
_pimpl->fillXImage(image, x0, imscale, izero, y0, imscale, jzero);
// Convert flux ratio to amplitude ratio
if (imscale != 1.) flux_ratio *= imscale*imscale;
} else if (jac[1] == 0. && jac[2] == 0.) {
double mA = jac[0];
double mD = jac[3];
dbg<<"diag jac: "<<mA<<','<<mD<<std::endl;
double xscale = 1./mA;
double yscale = 1./mD;
double new_x0 = x0 * xscale;
double new_y0 = y0 * yscale;
double dx = imscale * xscale;
double dy = imscale * yscale;
_pimpl->fillXImage(image, new_x0, dx, izero, new_y0, dy, jzero);
flux_ratio *= std::abs(dx*dy);
} else {
double mA = jac[0];
double mB = jac[1];
double mC = jac[2];
double mD = jac[3];
dbg<<"jac = "<<mA<<','<<mB<<','<<mC<<','<<mD<<std::endl;
double det = mA*mD - mB*mC;
double invdet = 1./det;
double new_x0 = (mD*x0 - mB*y0) * invdet;
double new_y0 = (-mC*x0 + mA*y0) * invdet;
// The rest all have the factor imscale * invdet, so do that here.
invdet *= imscale;
double dx = mD * invdet;
double dxy = -mB * invdet;
double dy = mA * invdet;
double dyx = -mC * invdet;
_pimpl->fillXImage(image, new_x0, dx, dxy, new_y0, dy, dyx);
flux_ratio *= std::abs(invdet * imscale);
}
// At this point the "flux" ration is really an amplitude ratio, including det(jac)
// and the image pixel scale.
dbg<<"amp_ratio = "<<flux_ratio<<std::endl;
if (flux_ratio != 1.)
image *= flux_ratio;
}
template <typename T>
void SBProfile::drawK(ImageView<std::complex<T> > image, double imscale, double* jac) const
{
dbg<<"Start drawK: \n";
dbg<<"bounds = "<<image.getBounds()<<std::endl;
dbg<<"imscale = "<<imscale<<std::endl;
assert(_pimpl.get());
assert(image.getStep() == 1);
int xmin = image.getXMin();
int ymin = image.getYMin();
double x0 = xmin*imscale;
int izero = xmin < 0 ? -xmin : 0;
double y0 = ymin*imscale;
int jzero = ymin < 0 ? -ymin : 0;
if (!jac) {
dbg<<"no jac\n";
_pimpl->fillKImage(image, x0, imscale, izero, y0, imscale, jzero);
} else if (jac[1] == 0. && jac[2] == 0.) {
double mA = jac[0];
double mD = jac[3];
dbg<<"diag jac: "<<mA<<','<<mD<<std::endl;
double new_x0 = x0 * mA;
double new_y0 = y0 * mD;
double dx = imscale * mA;
double dy = imscale * mD;
_pimpl->fillKImage(image, new_x0, dx, izero, new_y0, dy, jzero);
} else {
double mA = jac[0];
double mB = jac[1];
double mC = jac[2];
double mD = jac[3];
dbg<<"jac = "<<mA<<','<<mB<<','<<mC<<','<<mD<<std::endl;
double new_x0 = mA*x0 + mC*y0;
double new_y0 = mB*x0 + mD*y0;
double dx = mA * imscale;
double dxy = mC * imscale;
double dy = mD * imscale;
double dyx = mB * imscale;
_pimpl->fillKImage(image, new_x0, dx, dxy, new_y0, dy, dyx);
}
}
// The type of T (real or complex) determines whether the call-back is to
// fillXImage or fillKImage.
template <typename T>
struct QuadrantHelper
{
template <class Prof>
static void fill(const Prof& prof, ImageView<T> q,
double x0, double dx, double y0, double dy)
{ prof.fillXImage(q,x0,dx,0,y0,dy,0); }
};
template <typename T>
struct QuadrantHelper<std::complex<T> >
{
template <class Prof>
static void fill(const Prof& prof, ImageView<std::complex<T> > q,
double kx0, double dkx, double ky0, double dky)
{ prof.fillKImage(q,kx0,dkx,0,ky0,dky,0); }
};
// The code is basically the same for X or K.
template <class Prof, typename T>
static void FillQuadrant(const Prof& prof, ImageView<T> im,
double x0, double dx, int m1, double y0, double dy, int n1)
{
dbg<<"Start FillQuadrant\n";
dbg<<x0<<" "<<dx<<" "<<m1<<" "<<y0<<" "<<dy<<" "<<n1<<std::endl;
const int m = im.getNCol();
const int n = im.getNRow();
T* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
// m1 is the number of columns left of x==0
// m2 is the number of columns right of x==0
// n1 is the number of columns below of y==0
// n2 is the number of columns above of y==0
// m = m1 + m2 + 1
// n = n1 + n2 + 1
const int m2 = m - m1 - 1;
const int n2 = n - n1 - 1;
// Make a smaller single-quadrant image and fill that the normal way.
ImageAlloc<T> q(std::max(m1,m2)+1, std::max(n1,n2)+1);
QuadrantHelper<T>::fill(prof, q.view(), m1==0?x0:0., dx, n1==0?y0:0., dy);
// Use those values to fill the original image.
T* qptr = q.getData() + n1*q.getStride() + m1;
int qskip = -q.getStride() + (m1-m2-1);
assert(q.getStep() == 1);
for (int j=0; j<n1; ++j,ptr+=skip,qptr+=qskip) {
for (int i=0; i<m1; ++i) *ptr++ = *qptr--;
for (int i=0; i<=m2; ++i) *ptr++ = *qptr++;
}
assert(qptr == q.getData() + m1);
qskip = q.getStride() + (m1-m2-1);
for (int j=0; j<=n2; ++j,ptr+=skip,qptr+=qskip) {
for (int i=0; i<m1; ++i) *ptr++ = *qptr--;
for (int i=0; i<=m2; ++i) *ptr++ = *qptr++;
}
xdbg<<"Done copying quadrants"<<std::endl;
}
template <typename T>
void SBProfile::SBProfileImpl::fillXImageQuadrant(ImageView<T> im,
double x0, double dx, int nx1,
double y0, double dy, int ny1) const
{
// Guard against infinite loop.
assert(nx1 != 0 || ny1 != 0);
FillQuadrant(*this,im,x0,dx,nx1,y0,dy,ny1);
}
template <typename T>
void SBProfile::SBProfileImpl::fillKImageQuadrant(ImageView<std::complex<T> > im,
double kx0, double dkx, int nkx1,
double ky0, double dky, int nky1) const
{
// Guard against infinite loop.
assert(nkx1 != 0 || nky1 != 0);
FillQuadrant(*this,im,kx0,dkx,nkx1,ky0,dky,nky1);
}
void GetKValueRange1d(int& i1, int& i2, int m, double kmax, double ksqmax,
double kx0, double dkx, double ky, double& kysq)
{
if (std::abs(ky) >= kmax) { i1 = i2 = m; return; }
kysq = ky*ky;
// Most of the time, there is no region to skip, so only bother with this
// calculation if either end is large enough.
double dsq = ksqmax - kysq;
if (kx0*kx0 > dsq || (kx0+m*dkx)*(kx0+m*dkx) > dsq) {
// first and last i are where
// (kx0 + dkx*i)^2 + kysq = ksqmax
double d = sqrt(dsq);
i1 = int(ceil((-kx0 - d) / dkx));
i2 = int(floor((-kx0 + d) / dkx));
if (i1 > i2) std::swap(i1,i2);
++i2;
if (i2 <= 0 || i1 >= m) { i1 = i2 = m; return; }
if (i1 < 0) i1 = 0;
if (i2 > m) i2 = m;
} else {
i1 = 0;
i2 = m;
}
}
void GetKValueRange2d(int& i1, int& i2, int m, double kmax, double ksqmax,
double kx0, double dkx, double ky0, double dky)
{
#ifdef DEBUGLOGGING
xdbg<<"GetKValueRange: kx0, ky0 = "<<kx0<<','<<ky0<<" kmax = "<<kmax<<std::endl;
xdbg<<" "<<std::abs(kx0)<<" "<<std::abs(kx0+m*dkx)<<" "<<
std::abs(ky0)<<" "<<std::abs(ky0+m+dky)<<std::endl;
#endif
// Most of the time, there is no region to skip, so only bother with this calculation
// if at least one of the extreme values of kx or ky is > kmax.
if (std::abs(kx0) > kmax || std::abs(kx0+m*dkx) > kmax ||
std::abs(ky0) > kmax || std::abs(ky0+m+dky) > kmax) {
// first and last i are where
// (kx0 + i*dkx)^2 + (ky0 + i*dkyx)^2 = ksq_max
// (dkx^2 + dky^2) i^2 + 2 (dkx kx0 + dky ky0) i + (kx0^2 + ky0^2 - ksqmax) = 0
double a = dkx*dkx + dky*dky;
double b = dkx*kx0 + dky*ky0;
double c = kx0*kx0 + ky0*ky0 - ksqmax;
double d = b*b-a*c;
xdbg<<"d = "<<d<<std::endl;
if (d <= 0.) { i1 = i2 = m; return; }
d = sqrt(d);
i1 = int(ceil((-b - d) / a));
i2 = int(floor((-b + d) / a));
#ifdef DEBUGLOGGING
xdbg<<"i1,i2 = "<<i1<<','<<i2<<std::endl;
double ksq = (kx0+i1*dkx)*(kx0+i1*dkx) + (ky0+i1*dky)*(ky0+i1*dky);
xdbg<<"k at i1 = "<<sqrt(ksq)<<std::endl;
assert(ksq <= ksqmax);
ksq = (kx0+i2*dkx)*(kx0+i2*dkx) + (ky0+i2*dky)*(ky0+i2*dky);
xdbg<<"k at i2 = "<<sqrt(ksq)<<std::endl;
assert(ksq <= ksqmax);
ksq = (kx0+(i1-1)*dkx)*(kx0+(i1-1)*dkx) + (ky0+(i1-1)*dky)*(ky0+(i1-1)*dky);
xdbg<<"k at i1-1 = "<<sqrt(ksq)<<std::endl;
assert(ksq > ksqmax);
ksq = (kx0+(i2+1)*dkx)*(kx0+(i2+1)*dkx) + (ky0+(i2+1)*dky)*(ky0+(i2+1)*dky);
xdbg<<"k at i2+1 = "<<sqrt(ksq)<<std::endl;
assert(ksq > ksqmax);
#endif
if (i1 > i2) std::swap(i1,i2);
++i2;
if (i2 <= 0 || i1 >= m) { i1 = i2 = m; return; }
if (i1 < 0) i1 = 0;
if (i2 > m) i2 = m;
#ifdef DEBUGLOGGING
xdbg<<"i1,i2 => "<<i1<<','<<i2<<std::endl;
ksq = (kx0+i1*dkx)*(kx0+i1*dkx) + (ky0+i1*dky)*(ky0+i1*dky);
xdbg<<"k at i1 = "<<sqrt(ksq)<<std::endl;
ksq = (kx0+i2*dkx)*(kx0+i2*dkx) + (ky0+i2*dky)*(ky0+i2*dky);
xdbg<<"k at i2 = "<<sqrt(ksq)<<std::endl;
#endif
} else {
i1 = 0;
i2 = m;
}
}
// instantiate template functions for expected image types
template void SBProfile::draw(ImageView<float> image, double dx,
double* jac, double xoff, double yoff, double flux_ratio) const;
template void SBProfile::draw(ImageView<double> image, double dx,
double* jac, double xoff, double yoff, double flux_ratio) const;
template void SBProfile::drawK(ImageView<std::complex<float> > image, double dk,
double* jac) const;
template void SBProfile::drawK(ImageView<std::complex<double> > image, double dk,
double* jac) const;
template void SBProfile::SBProfileImpl::defaultFillXImage(
ImageView<double> im,
double x0, double dx, int izero, double y0, double dy, int jzero) const;
template void SBProfile::SBProfileImpl::defaultFillXImage(
ImageView<float> im,
double x0, double dx, int izero, double y0, double dy, int jzero) const;
template void SBProfile::SBProfileImpl::defaultFillXImage(
ImageView<double> im,
double x0, double dx, double dxy, double y0, double dy, double dyx) const;
template void SBProfile::SBProfileImpl::defaultFillXImage(
ImageView<float> im,
double x0, double dx, double dxy, double y0, double dy, double dyx) const;
template void SBProfile::SBProfileImpl::defaultFillKImage(
ImageView<std::complex<double> > im,
double kx0, double dkx, int izero, double ky0, double dky, int jzero) const;
template void SBProfile::SBProfileImpl::defaultFillKImage(
ImageView<std::complex<float> > im,
double kx0, double dkx, int izero, double ky0, double dky, int jzero) const;
template void SBProfile::SBProfileImpl::defaultFillKImage(
ImageView<std::complex<double> > im,
double kx0, double dkx, double dkxy, double ky0, double dky, double dkyx) const;
template void SBProfile::SBProfileImpl::defaultFillKImage(
ImageView<std::complex<float> > im,
double kx0, double dkx, double dkxy, double ky0, double dky, double dkyx) const;
template void SBProfile::SBProfileImpl::fillXImageQuadrant(
ImageView<double> im,
double x0, double dx, int nx1, double y0, double dy, int ny1) const;
template void SBProfile::SBProfileImpl::fillXImageQuadrant(
ImageView<float> im,
double x0, double dx, int nx1, double y0, double dy, int ny1) const;
template void SBProfile::SBProfileImpl::fillKImageQuadrant(
ImageView<std::complex<double> > im,
double kx0, double dkx, int nkx1, double ky0, double dky, int nky1) const;
template void SBProfile::SBProfileImpl::fillKImageQuadrant(
ImageView<std::complex<float> > im,
double kx0, double dkx, int nkx1, double ky0, double dky, int nky1) const;
}