Changeset 18629 for trunk/FACT++/drive/TPointStar.h
- Timestamp:
- 09/18/16 14:55:45 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/drive/TPointStar.h
r18618 r18629 5 5 #include <TNamed.h> 6 6 #endif 7 8 //class istream;9 //class ostream;10 7 11 8 class ZdAz; … … 42 39 Double_t GetMag() const { return fMag; } 43 40 Double_t GetResidual(Double_t *err=0) const; 44 //Double_t GetResidual() const;45 41 46 42 Double_t GetDEl() const;// { return (fRawEl-fStarEl)*TMath::RadToDeg(); } … … 60 56 AltAz GetRawAltAz() const;// { return AltAz(fRawEl, fRawAz); } 61 57 62 void AdjustEl(Double_t del);// { fStarEl += del*TMath::DegToRad(); } 63 void AdjustAz(Double_t daz);// { fStarAz += daz*TMath::DegToRad(); } 64 65 void Adjust(const MPointing &bend);/* 66 { 67 AltAz p = bend(GetStarAltAz()); 68 fStarEl = p.Alt(); 69 fStarAz = p.Az(); 70 }*/ 71 void AdjustBack(const MPointing &bend);/* 72 { 73 AltAz p = bend.CorrectBack(GetRawAltAz()); 74 fRawEl = p.Alt(); 75 fRawAz = p.Az(); 76 }*/ 77 ClassDef(TPointStar, 1) 58 void Adjust(const MPointing &bend); 59 void AdjustBack(const MPointing &bend); 78 60 }; 79 80 /*81 class TPoint : public TPointStar82 {83 public:84 TPoint(Double_t sel=0, Double_t saz=0, Double_t rel=0, Double_t raz=0)85 : TPointStar(sel, saz, rel, raz)86 {87 }88 ClassDef(TPoint, 1)89 };90 */91 61 92 62 std::istream &operator>>(std::istream &fin, TPointStar &set);
Note:
See TracChangeset
for help on using the changeset viewer.