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

Поисковые слова: релятивистское движение
lsst.tcc: include/tcc/tcsSite.h Source File
lsst.tcc  1.2.2-3-g89ecb63
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tcsSite.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <iostream>
4 #include <string>
5 #include <boost/tr1/array.hpp> // so array works with old and new compilers
6 #include "tcs.h"
7 #include "tcc/earth.h"
8 #include "tcc/weath.h"
9 
10 namespace tcc {
11 
20  class TcsSite {
21  public:
22  TcsSite();
23 
32  void update(
33  double tai,
34  coordConv::Site const &site
35  );
36 
37  double timestamp;
38  TIMEO teo;
39  SITE tsite;
41 
45  std::string __repr__() const;
46  };
47 
48  std::ostream &operator<<(std::ostream &os, TcsSite const &tcsSite);
49 
50 }
TIMEO teo
time information
Definition: tcsSite.h:38
std::tr1::array< double, MAXAUX > aux
auxiliary data for pointing model terms
Definition: tcsSite.h:40
std::string __repr__() const
Definition: tcsSite.cc:87
double timestamp
tai of last update; 0 if never updated
Definition: tcsSite.h:37
SITE tsite
site information
Definition: tcsSite.h:39
std::ostream & operator<<(std::ostream &os, ChebyshevPolynomial const &cheby)
Definition: cheby.cc:12
void update(double tai, coordConv::Site const &site)
Definition: tcsSite.cc:37
double tai()
Definition: tai.cc:7