Changeset 3751 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 04/15/04 15:15:58 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc
r3749 r3751 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), fTime(-1.), fIsSaturated(kFALSE), fIsHGSaturated(kFALSE) 62 fPixId(pix), fRing(1), fIsCore(kFALSE), fPhot(phot), fErrPhot(errphot), 63 fIsSaturated(kFALSE), fIsHGSaturated(kFALSE) 63 64 { 64 65 } -
trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h
r3748 r3751 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 Time20 19 21 20 Bool_t fIsSaturated; // the pixel's low gain is saturated … … 30 29 Float_t GetNumPhotons() const { return fPhot; } 31 30 Float_t GetErrorPhot() const { return fErrPhot; } 32 Float_t GetTime() const { return fTime; }33 31 34 32 Bool_t IsPixelUsed() const { return fRing>0; } … … 46 44 void SetNumPhotons(Float_t f) { fPhot = f; } 47 45 void SetErrorPhot(Float_t f) { fErrPhot = f; } 48 void SetTime (Float_t f) { fTime = f; }49 46 void Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; } 50 47
Note:
See TracChangeset
for help on using the changeset viewer.