Changeset 4778
- Timestamp:
- 08/27/04 20:34:55 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4777 r4778 19 19 20 20 -*-*- END OF LINE -*-*- 21 21 2004/08/27: Florian Goebel 22 23 * mpedestal/MPedestalPix.h 24 - correct calculation of error of RMS 22 25 23 26 2004/08/27: Hendrik Bartko -
trunk/MagicSoft/Mars/mpedestal/MPedestalPix.h
r4609 r4778 35 35 Float_t GetPedestalABoffset() const { return fPedestalABoffset; } 36 36 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; } 38 38 39 39 UInt_t GetNumEvents() const { return fNumEvents; }
Note:
See TracChangeset
for help on using the changeset viewer.