Changeset 3415 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 03/05/04 21:29:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
r3306 r3415 16 16 #pragma link C++ class MBlindPixels+; 17 17 #pragma link C++ class MBlindPixelCalc+; 18 #pragma link C++ class MBlindPixelsCalc2+; 18 19 19 20 #pragma link C++ class MPedestalPix+; -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r2856 r3415 12 12 Int_t fPixId; // the pixel Id 13 13 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) 15 15 Bool_t fIsCore; // the pixel is a Core pixel -> kTRUE 16 16 … … 30 30 31 31 Bool_t IsPixelUsed() const { return fRing>0; } 32 Bool_t IsPixelUnmapped() const { return fRing==-1; } 32 33 void SetPixelUnused() { fRing=0; } 33 34 void SetPixelUsed() { fRing=1; } 35 void SetPixelUnmapped() { fRing=-1;} 34 36 35 37 void SetRing(UShort_t r) { fRing = r; } … … 52 54 void Print(Option_t *opt = NULL) const; 53 55 54 ClassDef(MCerPhotPix, 2) // class containing information about the Cerenkov Photons in a pixel56 ClassDef(MCerPhotPix, 3) // class containing information about the Cerenkov Photons in a pixel 55 57 }; 56 58 … … 58 60 59 61 62 -
trunk/MagicSoft/Mars/manalysis/Makefile
r3331 r3415 60 60 MBlindPixels.cc \ 61 61 MBlindPixelCalc.cc \ 62 MBlindPixelsCalc2.cc \ 62 63 MEventRate.cc \ 63 64 MEventRateCalc.cc \
Note:
See TracChangeset
for help on using the changeset viewer.