- Timestamp:
- 04/15/04 14:45:22 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3747 r3748 25 25 than 20000 -> take ct1 26 26 27 * manalysis/MCerPhot Evt.h27 * manalysis/MCerPhotPix.[h,cc] 28 28 - added one variable fTime (with Getter and Setter) 29 29 -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc
r3734 r3748 60 60 // 61 61 MCerPhotPix::MCerPhotPix(Int_t pix, Float_t phot, Float_t errphot) : 62 fPixId(pix), fRing(1), fIsCore(kFALSE), fPhot(phot), fErrPhot(errphot), fIsSaturated(kFALSE), fIsHGSaturated(kFALSE)62 fPixId(pix), fRing(1), fIsCore(kFALSE), fPhot(phot), fErrPhot(errphot), fIsSaturated(kFALSE), fIsHGSaturated(kFALSE), fTime(-1.) 63 63 { 64 64 } -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r3466 r3748 17 17 Float_t fPhot; // The number of Cerenkov photons 18 18 Float_t fErrPhot; // the error of fPhot 19 Float_t fTime; // Calibrated Arrival Time 19 20 20 21 Bool_t fIsSaturated; // the pixel's low gain is saturated … … 29 30 Float_t GetNumPhotons() const { return fPhot; } 30 31 Float_t GetErrorPhot() const { return fErrPhot; } 31 32 Float_t GetTime() const { return fTime; } 33 32 34 Bool_t IsPixelUsed() const { return fRing>0; } 33 35 Bool_t IsPixelUnmapped() const { return fRing==-1; } … … 44 46 void SetNumPhotons(Float_t f) { fPhot = f; } 45 47 void SetErrorPhot(Float_t f) { fErrPhot = f; } 48 void SetTime (Float_t f) { fTime = f; } 46 49 void Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; } 47 50
Note:
See TracChangeset
for help on using the changeset viewer.