Ignore:
Timestamp:
02/13/09 17:46:02 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mpedestal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpedestal/MPedestalPix.cc

    r8912 r9332  
    9595}
    9696
     97void MPedestalPix::Print(Option_t *) const
     98{
     99    *fLog << all << "P=" << fPedestal;
     100    if (fPedestalRms>=0)
     101        *fLog << " RMS=" << fPedestalRms;
     102    if (fPedestalABoffset>=0)
     103        *fLog << " AB=" << fPedestalABoffset;
     104    if (fNumEvents>0)
     105        *fLog << " (N=" << fNumEvents << ")";
     106    *fLog << endl;
     107}
     108
    97109// ------------------------------------------------------------------------
    98110//
  • trunk/MagicSoft/Mars/mpedestal/MPedestalPix.h

    r8911 r9332  
    1919    void Clear(Option_t *o="");
    2020    void Copy(TObject &object) const;
     21    void Print(Option_t *o="") const;
    2122   
    2223    // Using histograms
Note: See TracChangeset for help on using the changeset viewer.