Ignore:
Timestamp:
03/29/07 13:53:26 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgeom/MGeomPix.h

    r7355 r8385  
    1010class MGeomPix : public MParContainer
    1111{
    12 private:
     12public:
    1313    static const Float_t gsTan60; // tan(60/kRad2Deg);
    1414    static const Float_t gsTan30; // tan(30/kRad2Deg);
    1515
     16private:
    1617    enum {
    1718        kIsInOutermostRing = BIT(22),
     
    6364    UInt_t  GetSector() const { return fSector; }
    6465
     66    Float_t GetDist() const  { return TMath::Hypot(fX, fY); }
    6567    Float_t GetDist(const MGeomPix &pix) const  { return TMath::Hypot(fX-pix.fX, fY-pix.fY); }
    6668    Float_t GetAngle(const MGeomPix &pix) const { return TMath::ATan2(fX - pix.GetX(), fY - pix.GetY()); }
Note: See TracChangeset for help on using the changeset viewer.