Skip to content

Commit

Permalink
Replace utils with cpputils in C++
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Jul 30, 2024
1 parent 8543c18 commit 3505673
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/imagePsf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
#include "pybind11/pybind11.h"
#include "lsst/cpputils/python.h"

#include "lsst/utils/python/PySharedPtr.h"
#include "lsst/cpputils/python/PySharedPtr.h"
#include "lsst/afw/table/io/python.h"
#include "lsst/meas/algorithms/ImagePsf.h"
#include "lsst/meas/algorithms/python.h"

namespace py = pybind11;
using namespace pybind11::literals;

using lsst::utils::python::PySharedPtr;
using lsst::cpputils::python::PySharedPtr;

namespace lsst {
namespace meas {
Expand Down
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/warpedPsf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
#include "pybind11/pybind11.h"
#include "lsst/cpputils/python.h"

#include "lsst/utils/python/PySharedPtr.h"
#include "lsst/cpputils/python/PySharedPtr.h"

#include "lsst/meas/algorithms/WarpedPsf.h"

namespace py = pybind11;
using namespace pybind11::literals;

using lsst::utils::python::PySharedPtr;
using lsst::cpputils::python::PySharedPtr;

namespace lsst {
namespace meas {
Expand Down

0 comments on commit 3505673

Please sign in to comment.