Ignore:
Timestamp:
05/23/03 17:30:31 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mgeom
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.cc

    r2037 r2135  
    102102        const Float_t x = pix.GetX();
    103103        const Float_t y = pix.GetY();
    104         const Float_t r = pix.GetR();
     104        const Float_t d = pix.GetD();
    105105
    106         const Float_t maxr = sqrt(x*x+y*y) + r;
     106        const Float_t maxr = sqrt(x*x+y*y) + d;
    107107
    108108        if (maxr>fMaxRadius)
  • trunk/MagicSoft/Mars/mgeom/MGeomCam.h

    r1965 r2135  
    4242    MGeomPix &operator[](Int_t i) const { return *(MGeomPix*)fPixels->UncheckedAt(i); }
    4343
    44 
    45 
    4644    virtual void Print(Option_t *opt=NULL) const;
    4745
  • trunk/MagicSoft/Mars/mgeom/MGeomCamMagic.cc

    r2037 r2135  
    222222    };
    223223
    224     const Float_t rtemp[577] = {
     224    const Float_t dtemp[577] = {
    225225        30.00, 30.00, 30.00, 30.00, 30.00, 30.00, 30.00, 30.00,  //   0
    226226        30.00, 30.00, 30.00, 30.00, 30.00, 30.00, 30.00, 30.00,  //   8
     
    302302
    303303    for (UInt_t i=0; i<GetNumPixels(); i++)
    304         (*this)[i].Set(xtemp[i], ytemp[i], rtemp[i]) ;
     304        (*this)[i].Set(xtemp[i], ytemp[i], dtemp[i]) ;
    305305}
    306306
     
    892892    };
    893893
    894   for (Int_t i=0; i<577; i++)
    895       (*this)[i].SetNeighbors(nn[i][0], nn[i][1], nn[i][2],
    896                               nn[i][3], nn[i][4], nn[i][5]);
    897 
    898   InitOuterRing();
     894    for (Int_t i=0; i<577; i++)
     895        (*this)[i].SetNeighbors(nn[i][0], nn[i][1], nn[i][2],
     896                                nn[i][3], nn[i][4], nn[i][5]);
     897
     898    InitOuterRing();
    899899}
  • trunk/MagicSoft/Mars/mgeom/MGeomPix.cc

    r1640 r2135  
    5252// Initializes one pixel
    5353//
    54 MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fR(r)
     54MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fD(r)
    5555{
    5656    //  default constructor
     
    6363Float_t MGeomPix::GetA() const
    6464{
    65     return fR*fR*tan(60/kRad2Deg);
     65    return fD*fD*tan(60/kRad2Deg);
    6666}
    6767
     
    121121    *fLog << all << "MPixGeom:  x= " << fX
    122122        << "  y= " << fY
    123         << "  r= " << fR
     123        << "  d= " << fD
    124124        << endl ;
    125125}
  • trunk/MagicSoft/Mars/mgeom/MGeomPix.h

    r1459 r2135  
    2020    Float_t fX;  // [mm] the x coordinate of the center
    2121    Float_t fY;  // [mm] the y coordinate of the center
    22     Float_t fR;  // [mm] the r coordinate of the pixel (dist between two parallel sides)
     22    Float_t fD;  // [mm] the d coordinate of the pixel (dist between two parallel sides)
    2323
    2424    Byte_t  fNumNeighbors; // number of valid neighbors
     
    2626
    2727public:
    28     MGeomPix(Float_t x=0, Float_t y=0, Float_t r=0);
     28    MGeomPix(Float_t x=0, Float_t y=0, Float_t d=0);
    2929
    3030    void Print(Option_t *opt=NULL) const;
    3131
    32     void Set(Float_t x, Float_t y, Float_t r) { fX=x; fY=y; fR=r; }
     32    void Set(Float_t x, Float_t y, Float_t d) { fX=x; fY=y; fD=d; }
    3333
    3434    void SetNeighbors(Short_t i0=-1, Short_t i1=-1, Short_t i2=-1,
     
    3939    void SetX(Float_t x) { fX = x; }
    4040    void SetY(Float_t y) { fY = y; }
    41     void SetR(Float_t r) { fR = r; }
     41    void SetD(Float_t d) { fD = d; }
    4242
    4343    Float_t GetX() const  { return fX; }
    4444    Float_t GetY() const  { return fY; }
    45     Float_t GetR() const  { return fR; }
     45    Float_t GetD() const  { return fD; }
    4646
    4747    Float_t GetA() const;
Note: See TracChangeset for help on using the changeset viewer.