Changeset 6034
- Timestamp:
- 01/27/05 10:05:51 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6033 r6034 58 58 - trying to get rid of the Err_%p workaround. 59 59 60 * manalysis/MCerPhotEvt. h:60 * manalysis/MCerPhotEvt.[h,cc]: 61 61 - added some '!' signs in the comment line. This is quick hack 62 62 to gain I/O speed and storage space. We will soon have new 63 63 containers for the calibrated data and image cleaning 64 64 information. 65 - changed version number to 6 65 66 66 67 -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc
r6031 r6034 48 48 // ---------- 49 49 // - added fIdxIsland 50 // 51 // Version 6: 52 // ---------- 53 // - put the '!' into the comment line for 54 // Bool_t fIsCore; //! the pixel is a Core pixel -> kTRUE 55 // 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) 56 // Short_t fIdxIsland; //! the pixel is a Core pixel -> kTRUE 57 // Bool_t fIsHGSaturated; //! the pixel's high gain is saturated 58 // This is a queick hack to gain storage space - the structure of 59 // the container for calibrated data will change soon. 50 60 // 51 61 //////////////////////////////////////////////////////////////////////////// -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r6031 r6034 5 5 #include "MParContainer.h" 6 6 #endif 7 #ifndef MARS_MMath 7 8 #include "MMath.h" 9 #endif 10 8 11 class MCerPhotPix : public MParContainer 9 12 { 10 13 private: 11 14 12 Int_t fPixId; // the pixel Id15 Int_t fPixId; // the pixel Id 13 16 14 Bool_t fIsCore; //the pixel is a Core pixel -> kTRUE15 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)16 Short_t fIdxIsland; //the pixel is a Core pixel -> kTRUE17 Bool_t fIsCore; //! the pixel is a Core pixel -> kTRUE 18 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) 19 Short_t fIdxIsland; //! the pixel is a Core pixel -> kTRUE 17 20 18 Float_t fPhot; // The number of Cerenkov photons19 Float_t fErrPhot; // the error of fPhot21 Float_t fPhot; // The number of Cerenkov photons 22 Float_t fErrPhot; // the error of fPhot 20 23 21 24 Bool_t fIsSaturated; // the pixel's low gain is saturated 22 Bool_t fIsHGSaturated; // the pixel's high gain is saturated25 Bool_t fIsHGSaturated; //! the pixel's high gain is saturated 23 26 24 27 // FIXME: arrival time t, and it's error sigma t … … 63 66 Bool_t IsSortable() const { return kTRUE; } 64 67 65 ClassDef(MCerPhotPix, 5) // class containing information about the Cerenkov Photons in a pixel68 ClassDef(MCerPhotPix, 6) // class containing information about the Cerenkov Photons in a pixel 66 69 }; 67 70 68 71 #endif 69 70 71
Note:
See TracChangeset
for help on using the changeset viewer.