Changeset 6350 for trunk/MagicSoft
- Timestamp:
- 02/10/05 14:15:19 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6349 r6350 58 58 - removed an obsolete line 59 59 - 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 60 64 61 65 -
trunk/MagicSoft/Mars/mimage/MHillas.h
r4710 r6350 37 37 void Paint(Option_t *opt=NULL); 38 38 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 45 46 46 47 TVector2 GetMean() const;
Note:
See TracChangeset
for help on using the changeset viewer.