Changeset 4778 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
08/27/04 20:34:55 (20 years ago)
Author:
fgoebel
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4777 r4778  
    1919
    2020                                                 -*-*- END OF LINE -*-*-
    21 
     21 2004/08/27: Florian Goebel
     22
     23   * mpedestal/MPedestalPix.h
     24     - correct calculation of error of RMS
    2225
    2326 2004/08/27: Hendrik Bartko
  • trunk/MagicSoft/Mars/mpedestal/MPedestalPix.h

    r4609 r4778  
    3535    Float_t GetPedestalABoffset() const { return fPedestalABoffset; }
    3636    Float_t GetPedestalError()    const { return fNumEvents>0 ? fPedestalRms/TMath::Sqrt((Float_t)fNumEvents)   : 0; }
    37     Float_t GetPedestalRmsError() const { return fNumEvents>0 ? fPedestalRms/TMath::Sqrt((Float_t)fNumEvents/2) : 0; }
     37    Float_t GetPedestalRmsError() const { return fNumEvents>0 ? fPedestalRms/TMath::Sqrt((Float_t)fNumEvents*2) : 0; }
    3838
    3939    UInt_t  GetNumEvents() const { return fNumEvents; }
Note: See TracChangeset for help on using the changeset viewer.