Skip to content

Commit

Permalink
docfix
Browse files Browse the repository at this point in the history
  • Loading branch information
gzotti committed May 18, 2018
1 parent cb11bb8 commit c1f2ed1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/core/RefractionExtinction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ class Extinction

Extinction();

//! Compute extinction effect for arrays of size num position vectors and magnitudes.
//! @param altAzPos are the NORMALIZED (!!) (geometrical) star position vectors, and their z components sin(geometric_altitude).
//! Compute extinction effect for given position vector and magnitude.
//! @param altAzPos is the NORMALIZED (!!) (geometrical) star position vectors, and its z component is therefore sin(geometric_altitude).
//! This call must therefore be done before application of Refraction if atmospheric effects are on.
//! Note that forward/backward are no absolute reverse operations!
void forward(const Vec3d& altAzPos, float* mag) const
Expand All @@ -70,8 +70,9 @@ class Extinction
*mag += airmass(altAzPos[2], false) * ext_coeff;
}

//! Compute inverse extinction effect for arrays of size num position vectors and magnitudes.
//! @param altAzPos are the NORMALIZED (!!) (geometrical) star position vectors, and their z components sin(geometric_altitude).
//! Compute inverse extinction effect for given position vector and magnitude.
//! @param altAzPos is the NORMALIZED (!!) (geometrical) star position vector, and its z component is therefore sin(geometric_altitude).
//! This call must therefore be done after application of Refraction effects if atmospheric effects are on.
//! Note that forward/backward are no absolute reverse operations!
void backward(const Vec3d& altAzPos, float* mag) const
{
Expand Down

0 comments on commit c1f2ed1

Please sign in to comment.