Ignore:
Timestamp:
04/12/03 16:40:23 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1715 r1951  
    1515    Bool_t  fIsCore;      // the pixel is a Core pixel          --> kTRUE
    1616
     17    UShort_t fRing;       // NT: number of analyzed rings around the core pixels
    1718    Float_t fPhot;        // The number of Cerenkov photons
    1819    Float_t fErrPhot;     // the error of fPhot
     
    3132
    3233    Bool_t  IsPixelUsed() const      { return fIsUsed;   }
    33     void    SetPixelUnused()         { fIsUsed = kFALSE; }
    34     void    SetPixelUsed()           { fIsUsed = kTRUE;  }
     34    void    SetPixelUnused()         { fIsUsed = kFALSE; fRing=0; }
     35    void    SetPixelUsed()           { fIsUsed = kTRUE;  fRing=1;  }
     36
     37    void    SetRing(Short_t r)       { fRing = r; fIsUsed = (r>0); }
     38
     39    Short_t GetRing() const          { return fRing;}
    3540
    3641    void    SetPixelCore()           { fIsCore = kTRUE; }
Note: See TracChangeset for help on using the changeset viewer.