| 1 | #ifndef MARS_MPointingPos
|
|---|
| 2 | #define MARS_MPointingPos
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MParContainer
|
|---|
| 5 | #include "MParContainer.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | // FIXME: Should not be here... (ZdAz)
|
|---|
| 9 | #ifndef MARS_MPointing
|
|---|
| 10 | #include "MPointing.h"
|
|---|
| 11 | #endif
|
|---|
| 12 |
|
|---|
| 13 | class MTime;
|
|---|
| 14 | class MObservatory;
|
|---|
| 15 | class MPointingDev;
|
|---|
| 16 |
|
|---|
| 17 | class MPointingPos : public MParContainer
|
|---|
| 18 | {
|
|---|
| 19 | private:
|
|---|
| 20 | static const TString gsDefName;
|
|---|
| 21 | static const TString gsDefTitle;
|
|---|
| 22 |
|
|---|
| 23 | Double_t fZd; // [deg] Zenith distance (ZA)
|
|---|
| 24 | Double_t fAz; // [deg] Azimuth
|
|---|
| 25 |
|
|---|
| 26 | Double_t fRa; // [h] Right ascension
|
|---|
| 27 | Double_t fHa; // [h] Hour angle
|
|---|
| 28 | Double_t fDec; // [deg] Declination
|
|---|
| 29 |
|
|---|
| 30 | public:
|
|---|
| 31 | MPointingPos(const char *name=0, const char *title=0) : fZd(0), fAz(0), fRa(0), fHa(0), fDec(0)
|
|---|
| 32 | {
|
|---|
| 33 | fName = name ? (TString)name : gsDefName;
|
|---|
| 34 | fTitle = title ? (TString)title : gsDefTitle;
|
|---|
| 35 | }
|
|---|
| 36 | MPointingPos(const MPointingPos &p) : MParContainer(p),
|
|---|
| 37 | fZd(p.fZd), fAz(p.fAz), fRa(p.fRa), fHa(p.fHa), fDec(p.fDec)
|
|---|
| 38 | {
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 | Bool_t IsInitialized() const { return !(fZd==0 && fAz==0 && fRa==0 && fHa==0 && fDec==0); }
|
|---|
| 42 |
|
|---|
| 43 | void Print(Option_t *o="") const;
|
|---|
| 44 |
|
|---|
| 45 | TString GetString(Option_t *o="") const;
|
|---|
| 46 |
|
|---|
| 47 | void SetLocalPosition(Double_t zd, Double_t az) { fZd=zd; fAz=az; }
|
|---|
| 48 | void SetSkyPosition(Double_t ra, Double_t dec, Double_t ha=0) { fRa=ra; fDec=dec; fHa=ha; }
|
|---|
| 49 |
|
|---|
| 50 | Double_t GetZd() const { return fZd; }
|
|---|
| 51 | Double_t GetAz() const { return fAz; }
|
|---|
| 52 |
|
|---|
| 53 | Double_t GetZdRad() const { return fZd*TMath::DegToRad(); }
|
|---|
| 54 | Double_t GetAzRad() const { return fAz*TMath::DegToRad(); }
|
|---|
| 55 |
|
|---|
| 56 | ZdAz GetZdAz() const { return ZdAz(fZd, fAz); }
|
|---|
| 57 |
|
|---|
| 58 | Double_t GetRa() const { return fRa; }
|
|---|
| 59 | Double_t GetHa() const { return fHa; }
|
|---|
| 60 | Double_t GetDec() const { return fDec; }
|
|---|
| 61 |
|
|---|
| 62 | Double_t GetRaRad() const { return fRa*TMath::DegToRad()*15; }
|
|---|
| 63 | Double_t GetDecRad() const { return fDec*TMath::DegToRad(); }
|
|---|
| 64 |
|
|---|
| 65 | Double_t RotationAngle(const MObservatory &o) const;
|
|---|
| 66 | Double_t RotationAngle(const MObservatory &o, const MTime &t, const MPointingDev *dev=0) const;
|
|---|
| 67 | Double_t RotationAngle(const MObservatory &o, const MTime *t) const
|
|---|
| 68 | {
|
|---|
| 69 | return t ? RotationAngle(o, *t) : RotationAngle(o);
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | ClassDef(MPointingPos, 1) //Container storing the (corrected) telescope pointing position
|
|---|
| 73 | };
|
|---|
| 74 |
|
|---|
| 75 | #endif
|
|---|