Skip to content

Commit

Permalink
Fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Nov 15, 2017
1 parent e40e7c3 commit 067b7a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions include/lsst/jointcal/Associations.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ class Associations {
* @param[in] bbox The bounding box of the exposure
* @param[in] filter The exposure's filter
* @param[in] photoCalib The exposure's photometric calibration
* @param[in] detector The exposure's detector
* @param[in] visit The visit identifier
* @param[in] ccd The ccd identifier
* @param[in] control The JointcalControl object
Expand Down
3 changes: 2 additions & 1 deletion include/lsst/jointcal/ConstrainedPhotometryModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ class ConstrainedPhotometryModel : public PhotometryModel {
void offsetParams(Eigen::VectorXd const &delta) override;

/// @copydoc PhotometryModel::transform
double transform(CcdImage const &ccdImage, MeasuredStar const &star, double instFlux) const override;
double transform(CcdImage const &ccdImage, MeasuredStar const &measuredStar,
double instFlux) const override;

/// @copydoc PhotometryModel::getMappingIndices
void getMappingIndices(CcdImage const &ccdImage, std::vector<unsigned> &indices) const override;
Expand Down
3 changes: 2 additions & 1 deletion include/lsst/jointcal/PhotometryModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ class PhotometryModel {
/**
* Get how this set of parameters (of length Npar()) map into the "grand" fit.
*
* @param[out] indices The indices of the mapping associated with ccdImage.
* @param[in] ccdImage The ccdImage to look up.
* @param[out] indices The indices of the mapping associated with ccdImage.
*/
virtual void getMappingIndices(CcdImage const &ccdImage, std::vector<unsigned> &indices) const = 0;

Expand Down
3 changes: 2 additions & 1 deletion include/lsst/jointcal/SimplePhotometryModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class SimplePhotometryModel : public PhotometryModel {
void offsetParams(Eigen::VectorXd const &delta) override;

/// @copydoc PhotometryModel::transform
double transform(CcdImage const &ccdImage, MeasuredStar const &star, double instFlux) const override;
double transform(CcdImage const &ccdImage, MeasuredStar const &measuredStar,
double instFlux) const override;

/// @copydoc PhotometryModel::getMappingIndices
void getMappingIndices(CcdImage const &ccdImage, std::vector<unsigned> &indices) const override;
Expand Down

0 comments on commit 067b7a5

Please sign in to comment.