summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/tools/modcalcprec.h
blob: 21a42c244d48999483e9c8fc226856597751438b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/***************************************************************************
                          modcalcprec.h  -  description
                             -------------------
    begin                : Sun Jan 27 2002
    copyright            : (C) 2002 by Pablo de Vicente
    email                : vicente@oan.es
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef MODCALCPREC_H
#define MODCALCPREC_H

#include "modcalcprecdlg.h"

/**
  * Class which implements the KStars calculator precession module. Precesses
  * coordinates between different epochs. Conversions are performed assuming
  * that coordinates are in the FK5 system. For example the conversion between
  * B1950 and J2000 is not exact. 
  *
  * Inherits modCalcPrecDlg
  *@author Pablo de Vicente
	*@version 0.9
  */

class TQString;
class dms;
class SkyPoint;

class modCalcPrec : public modCalcPrecDlg  {

TQ_OBJECT
  
public: 
	modCalcPrec(TQWidget *p, const char *n); 
	~modCalcPrec();
	SkyPoint precess (dms ra0, dms dec0, double e0, double ef);

public slots:
	void slotClearCoords (void);
	void slotComputeCoords (void);
	void slotRaCheckedBatch(void);
	void slotDecCheckedBatch(void);
	void slotEpochCheckedBatch(void);
	void slotTargetEpochCheckedBatch(void);
	void slotInputFile(void);
	void slotOutputFile(void);
	void slotRunBatch(void);

private:
	SkyPoint getEquCoords(void);
	TQString  showCurrentEpoch(void);
	double setCurrentEpoch(void);
	double getEpoch (TQString eName);
	void showEquCoords ( SkyPoint sp );
	void processLines( TQTextStream &istream );

};

#endif