Ignore:
Timestamp:
01/28/05 11:18:44 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

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

    r6034 r6078  
    7878    fIsSaturated(kFALSE), fIsHGSaturated(kFALSE)
    7979{
    80     MMath::TruncatePrecision(fPhot);
    81     MMath::TruncatePrecision(fErrPhot);
     80    MMath::ReducePrecision(fPhot);
     81    MMath::ReducePrecision(fErrPhot);
    8282}
    8383
  • trunk/MagicSoft/Mars/manalysis/MCerPhotPix.h

    r6034 r6078  
    4848    Bool_t  IsPixelCore() const         { return fIsCore;  }
    4949
    50     void    SetNumPhotons(Float_t f)    { MMath::TruncatePrecision(f); fPhot     = f; }
    51     void    SetErrorPhot(Float_t f)     { MMath::TruncatePrecision(f); fErrPhot = f; }
    52     void    Set(Float_t np, Float_t ep) { MMath::TruncatePrecision(np); MMath::TruncatePrecision(ep);  fPhot = np; fErrPhot = ep; }
     50    void    SetNumPhotons(Float_t f)    { MMath::ReducePrecision(f); fPhot     = f; }
     51    void    SetErrorPhot(Float_t f)     { MMath::ReducePrecision(f); fErrPhot = f; }
     52    void    Set(Float_t np, Float_t ep) { MMath::ReducePrecision(np); MMath::ReducePrecision(ep);  fPhot = np; fErrPhot = ep; }
    5353
    5454    void    SetPixelSaturated()         { fIsSaturated = kTRUE; }
Note: See TracChangeset for help on using the changeset viewer.