Ignore:
Timestamp:
01/21/02 21:48:35 (23 years ago)
Author:
rkb
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1015 r1204  
    99{
    1010private:
    11     Float_t fX;  // the x coordinate
    12     Float_t fY;  // the y coordinate
    13     Float_t fR;  // the r coordinate
     11    Float_t fX;  // [mm] the x coordinate
     12    Float_t fY;  // [mm] the y coordinate
     13    Float_t fR;  // [mm] the r coordinate
    1414
    1515    Byte_t  fNumNeighbors; // number of valid neighbors
     
    2222    void Print(Option_t *opt=NULL) const;
    2323
    24     void Set (Float_t x, Float_t y, Float_t r) { fX=x; fY=y; fR=r; }
     24    void Set(Float_t x, Float_t y, Float_t r) { fX=x; fY=y; fR=r; }
    2525
    2626    void SetNeighbors(Short_t i0=-1, Short_t i1=-1, Short_t i2=-1,
    2727                      Short_t i3=-1, Short_t i4=-1, Short_t i5=-1);
    2828
    29     void SetX (Float_t x) { fX = x; }
    30     void SetY (Float_t y) { fY = y; }
    31     void SetR (Float_t r) { fR = r; }
     29    void SetX(Float_t x) { fX = x; }
     30    void SetY(Float_t y) { fY = y; }
     31    void SetR(Float_t r) { fR = r; }
    3232
    3333    Float_t GetX() const  { return fX; }
     
    3535    Float_t GetR() const  { return fR; }
    3636
    37     Byte_t GetNumNeighbors() const { return fNumNeighbors; }
     37    Float_t GetA() const  { return fR*fR*3; } // FIXME: Algorithm! A hexagonal shape is assumed!
     38
     39    Byte_t  GetNumNeighbors() const { return fNumNeighbors; }
    3840    Short_t GetNeighbor(Byte_t i) const { return fNeighbors[i]; }
    3941
Note: See TracChangeset for help on using the changeset viewer.