-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathSBDeltaFunction.cpp
85 lines (72 loc) · 2.96 KB
/
SBDeltaFunction.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
/* -*- 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 "SBDeltaFunction.h"
#include "SBDeltaFunctionImpl.h"
namespace galsim {
SBDeltaFunction::SBDeltaFunction(double flux, const GSParams& gsparams) :
SBProfile(new SBDeltaFunctionImpl(flux, gsparams)) {}
SBDeltaFunction::SBDeltaFunction(const SBDeltaFunction& rhs) : SBProfile(rhs) {}
SBDeltaFunction::~SBDeltaFunction() {}
SBDeltaFunction::SBDeltaFunctionImpl::SBDeltaFunctionImpl(double flux,
const GSParams& gsparams) :
SBProfileImpl(gsparams), _flux(flux)
{
dbg<<"DeltaFunction:\n";
dbg<<"_flux = "<<_flux<<std::endl;
dbg<<"maxK() = "<<maxK()<<std::endl;
dbg<<"stepK() = "<<stepK()<<std::endl;
}
// Set maxK to the value where the FT is down to maxk_threshold
double SBDeltaFunction::SBDeltaFunctionImpl::maxK() const
{
// This is essentially infinite since the delta function
// is constant over k space
return MOCK_INF;
}
// The amount of flux missed in a circle of radius pi/stepk should be at
// most folding_threshold of the flux.
double SBDeltaFunction::SBDeltaFunctionImpl::stepK() const
{
// This is essentially infinite since the delta function
// is constant over k space
return MOCK_INF;
}
double SBDeltaFunction::SBDeltaFunctionImpl::xValue(const Position<double>& p) const
{
return (p.x == 0 && p.y == 0) ? MOCK_INF : 0.;
}
std::complex<double>
SBDeltaFunction::SBDeltaFunctionImpl::kValue(const Position<double>& k) const
{
std::complex<double> result(_flux,0);
return result;
}
void SBDeltaFunction::SBDeltaFunctionImpl::shoot(PhotonArray& photons, UniformDeviate ud) const
{
const int N = photons.size();
dbg<<"Delta Function shoot: N = "<<N<<std::endl;
dbg<<"Target flux = "<<getFlux()<<std::endl;
double fluxPerPhoton = _flux/N;
for (int i=0; i<N; i++) {
photons.setPhoton(i, 0.0, 0.0, fluxPerPhoton);
}
dbg<<"Realized flux = "<<photons.getTotalFlux()<<std::endl;
}
}