Ignore:
Timestamp:
04/15/04 15:15:58 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.cc

    r3749 r3751  
    6060//
    6161MCerPhotPix::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)
    6364{
    6465}
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r3748 r3751  
    1717    Float_t  fPhot;      // The number of Cerenkov photons
    1818    Float_t  fErrPhot;   // the error of fPhot
    19     Float_t  fTime;      // Calibrated Arrival Time
    2019
    2120    Bool_t   fIsSaturated;   // the pixel's low gain is saturated
     
    3029    Float_t  GetNumPhotons() const       { return fPhot;    }
    3130    Float_t  GetErrorPhot() const        { return fErrPhot; }
    32     Float_t  GetTime()      const        { return fTime;    }
    3331   
    3432    Bool_t   IsPixelUsed() const         { return fRing>0; }
     
    4644    void     SetNumPhotons(Float_t f)    { fPhot    = f; }
    4745    void     SetErrorPhot(Float_t f)     { fErrPhot = f; }
    48     void     SetTime    (Float_t f)    { fTime    = f; }
    4946    void     Set(Float_t np, Float_t ep) { fPhot = np; fErrPhot = ep; }
    5047
Note: See TracChangeset for help on using the changeset viewer.