Changeset 6350 for trunk/MagicSoft


Ignore:
Timestamp:
02/10/05 14:15:19 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6349 r6350  
    5858     - removed an obsolete line
    5959     - removed a debug line which should not be there
     60
     61   * mimage/MHillas.h:
     62     - added new Getter GetDeist0 returning the distance to the
     63       camera center
    6064
    6165
  • trunk/MagicSoft/Mars/mimage/MHillas.h

    r4710 r6350  
    3737    void Paint(Option_t *opt=NULL);
    3838
    39     Float_t GetLength() const { return fLength; }
    40     Float_t GetWidth() const  { return fWidth; }
    41     Float_t GetDelta() const  { return fDelta; }
    42     Float_t GetSize() const   { return fSize; }
    43     Float_t GetMeanX() const  { return fMeanX; }
    44     Float_t GetMeanY() const  { return fMeanY; }
     39    Float_t  GetLength() const { return fLength; }
     40    Float_t  GetWidth() const  { return fWidth; }
     41    Float_t  GetDelta() const  { return fDelta; }
     42    Float_t  GetSize() const   { return fSize; }
     43    Float_t  GetMeanX() const  { return fMeanX; }
     44    Float_t  GetMeanY() const  { return fMeanY; }
     45    Double_t GetDist0() const  { return TMath::Hypot(fMeanX, fMeanY); } // return distance to center
    4546
    4647    TVector2 GetMean() const;
Note: See TracChangeset for help on using the changeset viewer.