Changeset 1204 for trunk/MagicSoft


Ignore:
Timestamp:
01/21/02 21:48:35 (23 years ago)
Author:
rkb
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1203 r1204  
    11                                                                  -*-*- END -*-*-
     2
     3 2002/01/21: Thomas Bretz
     4 
     5   * mbase/MReadMarsFile.cc, mbase/MReadTree.[h,cc]:
     6     - implemented GetFileName
     7
     8   * mmc/MMcEvt.[hxx,cxx]
     9     - implemented WriteAscii
     10   
     11   * mgui/MGeomPix.h:
     12     - implemented first version of GetA
     13
     14
    215
    316 2002/01/19: Thomas Bretz
  • 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.