Skip to content

Commit

Permalink
fixed poissonFlux -> poisson_flux to match docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabytprowe committed Jun 21, 2012
1 parent 7f67adb commit 3828fad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/galsim/SBProfile.h
Expand Up @@ -528,10 +528,10 @@ namespace galsim {
*/
template <typename T>
double drawShoot(ImageView<T> img, double N, UniformDeviate ud,
double noise=0., bool poissonFlux=true) const;
double noise=0., bool poisson_flux=true) const;
template <typename T>
double drawShoot(Image<T>& img, double N, UniformDeviate ud,
double noise=0., bool poissonFlux=true) const
double noise=0., bool poisson_flux=true) const
{ return drawShoot(img.view(), N, ud, noise, poissonFlux); }
//@}

Expand Down

0 comments on commit 3828fad

Please sign in to comment.