Ignore:
Timestamp:
09/18/16 14:55:45 (8 years ago)
Author:
tbretz
Message:
Disentengle from root and Mars were appropriate, some tidying.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/drive/TPointStar.h

    r18618 r18629  
    55#include <TNamed.h>
    66#endif
    7 
    8 //class istream;
    9 //class ostream;
    107
    118class ZdAz;
     
    4239    Double_t GetMag() const { return fMag; }
    4340    Double_t GetResidual(Double_t *err=0) const;
    44     //Double_t GetResidual() const;
    4541
    4642    Double_t GetDEl() const;//     { return (fRawEl-fStarEl)*TMath::RadToDeg(); }
     
    6056    AltAz GetRawAltAz() const;//   { return AltAz(fRawEl, fRawAz); }
    6157
    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);
    7860};
    79 
    80 /*
    81 class TPoint : public TPointStar
    82 {
    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 */
    9161
    9262std::istream &operator>>(std::istream &fin, TPointStar &set);
Note: See TracChangeset for help on using the changeset viewer.