Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-22823: Remove accidental Doxygen comments for namespaces #287

Merged
merged 2 commits into from
Aug 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/CR.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
#include "lsst/meas/algorithms/CR.h"
#include "lsst/meas/algorithms/Interp.h"

/**
* @todo These should go into afw --- actually, there're already there, but
* in an anon namespace
/*
* TODO: These should go into afw --- actually, there're already there, but
* in an anon namespace (DM-35750).
*/
namespace lsst {
namespace afw {
Expand Down
6 changes: 3 additions & 3 deletions src/SpatialModelPsf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -677,9 +677,6 @@ std::pair<bool, double> fitSpatialKernelFromPsfCandidates(
}

/************************************************************************************************************/
/**
* Fit spatial kernel using approximate fluxes for candidates, and solving a linear system of equations
*/
namespace {
/// A class to calculate the A and b matrices used to estimate the PSF's spatial structure
///
Expand Down Expand Up @@ -872,6 +869,9 @@ class setAmplitudeVisitor : public afw::math::CandidateVisitor {

} // namespace

/**
* Fit spatial kernel using approximate fluxes for candidates, and solving a linear system of equations
*/
template <typename PixelT>
std::pair<bool, double> fitSpatialKernelFromPsfCandidates(
afw::math::Kernel* kernel, ///< the Kernel to fit
Expand Down