LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
FittedStar.h
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 #ifndef LSST_JOINTCAL_FITTED_STAR_H
26 #define LSST_JOINTCAL_FITTED_STAR_H
27 
28 #include <iostream>
29 #include <fstream>
30 
31 #include "lsst/jointcal/BaseStar.h"
32 #include "lsst/jointcal/StarList.h"
33 
34 namespace lsst {
35 namespace jointcal {
36 
37 class MeasuredStar;
38 class RefStar;
39 class AstrometryTransform;
40 
43 
45 struct PmBlock {
46  // proper motion in x and y. Units depend on how you fit them
47  double pmx, pmy;
48  double epmx, epmy, epmxy;
49  double color; // OK it is unrelated, but associated in practice
50  bool mightMove;
51 
52  PmBlock() : pmx(0), pmy(0), epmx(0), epmy(0), epmxy(0), color(0), mightMove(false){};
53 };
54 
60 class FittedStar : public BaseStar, public PmBlock {
61 public:
62  FittedStar() : BaseStar(), _indexInMatrix(-1), _measurementCount(0), _refStar(nullptr) {}
63 
64  FittedStar(const BaseStar& baseStar)
65  : BaseStar(baseStar), _indexInMatrix(0), _measurementCount(0), _refStar(nullptr) {}
66 
68  FittedStar(const MeasuredStar& measuredStar);
69 
72  FittedStar(FittedStar const&) = default;
73  FittedStar(FittedStar&&) = delete;
74  FittedStar& operator=(FittedStar const&) = delete;
75  FittedStar& operator=(FittedStar&&) = delete;
76 
79  _indexInMatrix = -1;
80  _measurementCount = 0;
81  _refStar = nullptr;
82  _flux = 0;
83  _fluxErr = 0;
84  _mag = 0;
85  _magErr = 0;
86  }
87 
89  void dump(std::ostream& stream = std::cout) const {
91  stream << " mcount: " << _measurementCount;
92  }
93 
95  int getMeasurementCount() const { return _measurementCount; }
96  int& getMeasurementCount() { return _measurementCount; }
97 
99  void addMagMeasurement(double magValue, double magWeight);
100 
102  void setIndexInMatrix(const unsigned& index) { _indexInMatrix = index; };
103 
105  int getIndexInMatrix() const { return _indexInMatrix; }
106 
108  void setRefStar(const RefStar* _refStar);
109 
111  const RefStar* getRefStar() const { return _refStar; };
112 
113 private:
114  unsigned _indexInMatrix;
115  int _measurementCount;
116  const RefStar* _refStar;
117 };
118 
119 /****** FittedStarList */
120 
122 class FittedStarList : public StarList<FittedStar> {
123 public:
125 
127  FittedStarList() { inTangentPlaneCoordinates = true; }
128 };
129 
130 typedef FittedStarList::const_iterator FittedStarCIterator;
131 typedef FittedStarList::iterator FittedStarIterator;
132 
135 const BaseStarList& Fitted2Base(const FittedStarList& This);
136 const BaseStarList* Fitted2Base(const FittedStarList* This);
137 } // namespace jointcal
138 } // namespace lsst
139 
140 #endif // LSST_JOINTCAL_FITTED_STAR_H
Objects used as position anchors, typically USNO stars.
Definition: RefStar.h:39
virtual void dump(std::ostream &stream=std::cout) const
utility
Definition: BaseStar.h:82
objects whose position is going to be fitted. Coordinates in Common Tangent Plane.
Definition: FittedStar.h:45
int getMeasurementCount() const
Definition: FittedStar.h:95
FittedStarList::const_iterator FittedStarCIterator
Definition: FittedStar.h:130
The base class for handling stars. Used by all matching routines.
Definition: BaseStar.h:50
std::lists of Stars.
Definition: StarList.h:58
void setIndexInMatrix(const unsigned &index)
index is a value that a fit can set and reread....
Definition: FittedStar.h:102
A base class for image defects.
FittedStarList::iterator FittedStarIterator
Definition: FittedStar.h:131
A list of FittedStar s. Such a list is typically constructed by Associations.
Definition: FittedStar.h:122
objects measured on actual images.
Definition: MeasuredStar.h:46
void dump(std::ostream &stream=std::cout) const
utility
Definition: FittedStar.h:89
BaseStarList & Fitted2Base(FittedStarList &This)
Definition: FittedStar.cc:64
const RefStar * getRefStar() const
Get the astrometric reference star associated with this star.
Definition: FittedStar.h:111
int getIndexInMatrix() const
Definition: FittedStar.h:105
STL class.
The objects which have been measured several times.
Definition: FittedStar.h:60
FittedStar(const BaseStar &baseStar)
Definition: FittedStar.h:64