Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.apo.nmsu.edu/Telescopes/TCC/html/px_p_m_rad_vel_8h_source.html
Дата изменения: Tue Sep 15 02:25:37 2015
Дата индексирования: Sun Apr 10 02:42:24 2016
Кодировка:

Поисковые слова: п п п п п п п п п п п п п п п п п п п п п п
lsst.tcc: include/tcc/pxPMRadVel.h Source File
lsst.tcc  1.2.2-3-g89ecb63
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
pxPMRadVel.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <iostream>
5 #include "coordConv/coordConv.h"
6 
7 namespace tcc {
8 
16  class PxPMRadVel {
17  public:
21  PxPMRadVel();
22 
32  PxPMRadVel(double parallax, double equatPM, double polarPM, double radVel);
33 
34  bool operator==(PxPMRadVel const &rhs);
35 
36  bool operator!=(PxPMRadVel const &rhs);
37 
41  std::string __repr__() const;
42 
43  double parallax;
44  double equatPM;
45  double polarPM;
46  double radVel;
47  };
48 
49  std::ostream &operator<<(std::ostream &os, PxPMRadVel const &pxPMRadVel);
50 
51 }
double parallax
parallax (arcsec)
Definition: pxPMRadVel.h:43
bool operator!=(PxPMRadVel const &rhs)
Definition: pxPmRadVel.cc:24
double radVel
radial velocity (km/sec, positive receding)
Definition: pxPMRadVel.h:46
double polarPM
polar proper motion (arcsec/century)
Definition: pxPMRadVel.h:45
std::ostream & operator<<(std::ostream &os, ChebyshevPolynomial const &cheby)
Definition: cheby.cc:12
double equatPM
equatorial proper motion (arcsec/century); this is dEquatAng/dt, so it gets large near the pole ...
Definition: pxPMRadVel.h:44
bool operator==(PxPMRadVel const &rhs)
Definition: pxPmRadVel.cc:17
std::string __repr__() const
Definition: pxPmRadVel.cc:28