LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
star.cc
Go to the documentation of this file.
1// -*- LSST-C++ -*-
2/*
3 * This file is part of jointcal.
4 *
5 * Developed for the LSST Data Management System.
6 * This product includes software developed by the LSST Project
7 * (https://www.lsst.org).
8 * See the COPYRIGHT file at the top-level directory of this distribution
9 * for details of code ownership.
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 */
24
25#include "pybind11/pybind11.h"
26#include "pybind11/stl.h"
27
28#include <list>
29
30#include "lsst/utils/python.h"
31
32#include "lsst/jointcal/Point.h"
38
39namespace py = pybind11;
40using namespace pybind11::literals;
41
42namespace lsst {
43namespace jointcal {
44namespace {
45
46void declarePoint(py::module &mod) {
47 py::class_<Point, std::shared_ptr<Point>> cls(mod, "Point");
48
49 cls.def(py::init<double, double>(), "x"_a, "y"_a);
50
51 cls.def_readwrite("x", &Point::x);
52 cls.def_readwrite("y", &Point::y);
53
54 utils::python::addOutputOp(cls, "__str__");
55}
56
57void declareFatPoint(py::module &mod) {
58 py::class_<FatPoint, std::shared_ptr<FatPoint>, Point> cls(mod, "FatPoint");
59
60 cls.def(py::init());
61}
62
63void declareBaseStar(py::module &mod) {
64 py::class_<BaseStar, std::shared_ptr<BaseStar>, FatPoint> cls(mod, "BaseStar");
65
66 cls.def(py::init<double, double, double, double>(), "x"_a, "y"_a, "flux"_a, "fluxErr"_a);
67
68 // these three are actually declared in FatPoint, but we didn't want that in Python.
69 // readwrite so that we can set them in unittests.
70 cls.def_readwrite("vx", &BaseStar::vx);
71 cls.def_readwrite("vy", &BaseStar::vy);
72 cls.def_readwrite("vxy", &BaseStar::vxy);
73
74 cls.def_property_readonly("flux", (double (BaseStar::*)() const) & BaseStar::getFlux);
75 cls.def_property_readonly("fluxErr", (double (BaseStar::*)() const) & BaseStar::getFluxErr);
76 cls.def_property_readonly("mag", (double (BaseStar::*)() const) & BaseStar::getMag);
77 cls.def_property_readonly("magErr", (double (BaseStar::*)() const) & BaseStar::getMagErr);
78}
79
80void declareRefStar(py::module &mod) {
81 py::class_<RefStar, std::shared_ptr<RefStar>, BaseStar> cls(mod, "RefStar");
82
83 cls.def(py::init<double, double, double, double>(), "xx"_a, "yy"_a, "flux"_a, "fluxErr"_a);
84
85 cls.def("setProperMotion", py::overload_cast<ProperMotion const &>(&RefStar::setProperMotion));
86 cls.def("applyProperMotion", &RefStar::applyProperMotion);
87}
88
89void declareFittedStar(py::module &mod) {
90 py::class_<FittedStar, std::shared_ptr<FittedStar>, BaseStar> cls(mod, "FittedStar");
91
92 cls.def(py::init<>());
93 cls.def(py::init<BaseStar const &>(), "baseStar"_a);
94}
95
96void declareMeasuredStar(py::module &mod) {
97 py::class_<MeasuredStar, std::shared_ptr<MeasuredStar>, BaseStar> cls(mod, "MeasuredStar");
98
99 cls.def(py::init<>());
100 cls.def(py::init<BaseStar const &>(), "baseStar"_a);
101
102 cls.def("getFittedStar", &MeasuredStar::getFittedStar);
103 cls.def("setFittedStar", &MeasuredStar::setFittedStar);
104
105 cls.def("getInstFlux", &MeasuredStar::getInstFlux);
106 cls.def("setInstFluxAndErr", &MeasuredStar::setInstFluxAndErr);
107 cls.def("getInstFluxErr", &MeasuredStar::getInstFluxErr);
108 cls.def("getInstMag", &MeasuredStar::getInstMag);
109 cls.def("getInstMagErr", &MeasuredStar::getInstMagErr);
110 cls.def("setXFocal", &MeasuredStar::setXFocal);
111 cls.def("setYFocal", &MeasuredStar::setYFocal);
112 cls.def("getXFocal", &MeasuredStar::getXFocal);
113 cls.def("getYFocal", &MeasuredStar::getYFocal);
114}
115
116void declareProperMotion(py::module &mod) {
117 py::class_<ProperMotion, std::shared_ptr<ProperMotion>> cls(mod, "ProperMotion");
118
119 cls.def(py::init<double, double, double, double, double>(), "ra"_a, "dec"_a, "raErr"_a, "decErr"_a,
120 "raDecCov"_a = 0);
121
122 cls.def("apply", &ProperMotion::apply);
123
124 utils::python::addOutputOp(cls, "__str__");
125}
126
127PYBIND11_MODULE(star, mod) {
128 declarePoint(mod);
129 declareFatPoint(mod);
130 declareBaseStar(mod);
131 declareRefStar(mod);
132 declareFittedStar(mod);
133 declareMeasuredStar(mod);
134 declareProperMotion(mod);
135}
136} // namespace
137} // namespace jointcal
138} // namespace lsst
double getMagErr() const
Definition: BaseStar.h:108
double getMag() const
Definition: BaseStar.h:105
double getFlux() const
Definition: BaseStar.h:98
double getFluxErr() const
Definition: BaseStar.h:102
void setFittedStar(std::shared_ptr< FittedStar > fittedStar)
Definition: MeasuredStar.h:84
void setXFocal(double xFocal)
Definition: MeasuredStar.h:114
void setInstFluxAndErr(double instFlux, double instFluxErr)
Definition: MeasuredStar.h:95
void setYFocal(double yFocal)
Definition: MeasuredStar.h:116
std::shared_ptr< FittedStar > getFittedStar() const
Definition: MeasuredStar.h:118
double x
coordinate
Definition: Point.h:42
Point apply(const Point &star, double timeDeltaYears) const
Apply proper motion correction to the input star, returning a star with PM-corrected coordinates.
Definition: ProperMotion.cc:34
Point applyProperMotion(const Point &star, double timeDeltaYears) const
Apply proper motion correction to the input star, returning a star with PM-corrected coordinates and ...
Definition: RefStar.cc:34
void setProperMotion(ProperMotion const &properMotion)
Definition: RefStar.h:56
PYBIND11_MODULE(_cameraGeom, mod)
Definition: _cameraGeom.cc:38