Ignore:
Timestamp:
03/05/04 21:29:08 (21 years ago)
Author:
tonello
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r2856 r3415  
    1212    Int_t    fPixId;     // the pixel Id
    1313
    14     UShort_t fRing;      // NT: number of analyzed rings around the core pixels (fRing>0 means: used)
     14   Short_t fRing;      // NT: number of analyzed rings around the core pixels, fRing>0 means: used, fRing= 0 means: unused, fRing= -1 means: unmapped (no possible to use in the calculation of the image parameters)
    1515    Bool_t   fIsCore;    // the pixel is a Core pixel -> kTRUE
    1616
     
    3030
    3131    Bool_t   IsPixelUsed() const         { return fRing>0; }
     32    Bool_t   IsPixelUnmapped() const     { return fRing==-1; }
    3233    void     SetPixelUnused()            { fRing=0; }
    3334    void     SetPixelUsed()              { fRing=1; }
     35    void     SetPixelUnmapped()          { fRing=-1;}
    3436
    3537    void     SetRing(UShort_t r)         { fRing = r;   }
     
    5254    void     Print(Option_t *opt = NULL) const;
    5355
    54     ClassDef(MCerPhotPix, 2)  // class containing information about the Cerenkov Photons in a pixel
     56    ClassDef(MCerPhotPix, 3)  // class containing information about the Cerenkov Photons in a pixel
    5557};
    5658
     
    5860
    5961
     62
Note: See TracChangeset for help on using the changeset viewer.