Ignore:
Timestamp:
03/05/04 21:29:08 (21 years ago)
Author:
tonello
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 added
3 edited

Legend:

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

    r3306 r3415  
    1616#pragma link C++ class MBlindPixels+;
    1717#pragma link C++ class MBlindPixelCalc+;
     18#pragma link C++ class MBlindPixelsCalc2+;
    1819
    1920#pragma link C++ class MPedestalPix+;
  • 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
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r3331 r3415  
    6060           MBlindPixels.cc \
    6161           MBlindPixelCalc.cc \
     62           MBlindPixelsCalc2.cc \
    6263           MEventRate.cc \
    6364           MEventRateCalc.cc \
Note: See TracChangeset for help on using the changeset viewer.