Ignore:
Timestamp:
06/30/08 10:37:00 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r8978 r8988  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MMath.cc,v 1.39 2008-06-18 20:39:48 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MMath.cc,v 1.40 2008-06-30 09:36:35 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    234234
    235235    // Define where to divide (floor because the highest possible is n-1)
    236     const Int_t div = TMath::FloorNint(n*prob);
     236    const Size div = TMath::FloorNint(n*prob);
    237237
    238238    // Calculate result
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.h

    r8986 r8988  
    194194     TObject *FindObject(const char *obj, const char *base) const { return FindObjectInCanvas(obj, base, 0); }
    195195     TObject *FindObject(const char *obj) const { return FindObjectInCanvas(obj, obj, 0); }
    196      TObject *FindObject(const TObject *o) const { return 0;  }
     196     TObject *FindObject(const TObject *) const { return 0;  }
    197197
    198198     void PrintContent(Option_t *o="") const;
  • trunk/MagicSoft/Mars/mbase/MTime.h

    r8946 r8988  
    8383    }
    8484
    85     void Clear(const Option_t *o="") { fMjd=0; fTime=0; fNanoSec=0; }
     85    void Clear(const Option_t *) { Clear(); }
     86    void Clear() { fMjd=0; fTime=0; fNanoSec=0; }
    8687
    8788    void Print(Option_t *t=NULL) const;
Note: See TracChangeset for help on using the changeset viewer.