Changeset 8907 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 06/02/08 09:52:26 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MEventRate.cc
r2780 r8907 46 46 #include "MEventRate.h" 47 47 48 #include <TMath.h> 49 48 50 #include "MLog.h" 49 51 #include "MLogManip.h" … … 62 64 fTitle = title ? title : "Storage container for the event rate [Hz]"; 63 65 } 66 67 Double_t MEventRate::GetError() const 68 { 69 return TMath::Sqrt(1./fNumEvents); 70 } -
trunk/MagicSoft/Mars/manalysis/MEventRate.h
r2779 r8907 17 17 void SetRate(Double_t r, UInt_t n) { fRate = r; fNumEvents = n; } 18 18 Double_t GetRate() const { return fRate; } 19 Double_t GetError() const { return TMath::Sqrt(1./fNumEvents); }19 Double_t GetError() const;// { return TMath::Sqrt(1./fNumEvents); } 20 20 UInt_t GetNumEvents() const { return fNumEvents; } 21 21 -
trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc
r8075 r8907 47 47 #include <fstream> 48 48 49 #include <math.h> 50 49 51 #include <TVector.h> 50 52
Note:
See TracChangeset
for help on using the changeset viewer.