Ignore:
Timestamp:
06/02/08 09:52:26 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
3 edited

Legend:

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

    r2780 r8907  
    4646#include "MEventRate.h"
    4747
     48#include <TMath.h>
     49
    4850#include "MLog.h"
    4951#include "MLogManip.h"
     
    6264    fTitle = title ? title : "Storage container for the event rate [Hz]";
    6365}
     66
     67Double_t MEventRate::GetError() const
     68{
     69    return TMath::Sqrt(1./fNumEvents);
     70}
  • trunk/MagicSoft/Mars/manalysis/MEventRate.h

    r2779 r8907  
    1717    void SetRate(Double_t r, UInt_t n) { fRate = r; fNumEvents = n; }
    1818    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); }
    2020    UInt_t GetNumEvents() const { return fNumEvents; }
    2121
  • trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc

    r8075 r8907  
    4747#include <fstream>
    4848
     49#include <math.h>
     50
    4951#include <TVector.h>
    5052
Note: See TracChangeset for help on using the changeset viewer.