8 #ifndef GLORIAASTROMETRY_H_
9 #define GLORIAASTROMETRY_H_
12 #include "GloriaFitsTable.h"
26 GloriaAstrometry(leblind_struct *lestr);
33 void InitFromLeblind(leblind_struct *lestr);
48 void Print(std::ostream& os);
51 void GetRaDecFromXY(
double x,
double y,
double *ra,
double *dec);
53 inline void GetRaDecFromXY(
double x,
double y,
double *radec)
54 { GetRaDecFromXY( x, y, radec, radec+1); };
57 void GetXYFromRaDec(
double ra,
double dec,
double *x,
double *y);
59 inline void GetXYFromRaDec(
double ra,
double dec,
double *xy)
60 { GetXYFromRaDec( ra, dec, xy, xy+1); };
62 virtual ~GloriaAstrometry();
84 vector< vector<double> > sip_a;
88 vector< vector<double> > sip_b;
92 vector< vector<double> > sip_ap;
96 vector< vector<double> > sip_bp;
101 double ref_ra, ref_dec;
106 double wcs_ref_vec[3];
107 double wcs_ra_vec[3];
108 double wcs_dec_vec[3];
namespace for data storing and exchange formats
Definition: GloriaAstrometry.h:15
Class for reading and processing fits tables in Luiza.
Definition: GloriaFitsTable.h:109