Changeset 8988 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 06/30/08 10:37:00 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MMath.cc
r8978 r8988 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MMath.cc,v 1. 39 2008-06-18 20:39:48tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MMath.cc,v 1.40 2008-06-30 09:36:35 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 234 234 235 235 // Define where to divide (floor because the highest possible is n-1) 236 const Int_tdiv = TMath::FloorNint(n*prob);236 const Size div = TMath::FloorNint(n*prob); 237 237 238 238 // Calculate result -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.h
r8986 r8988 194 194 TObject *FindObject(const char *obj, const char *base) const { return FindObjectInCanvas(obj, base, 0); } 195 195 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; } 197 197 198 198 void PrintContent(Option_t *o="") const; -
trunk/MagicSoft/Mars/mbase/MTime.h
r8946 r8988 83 83 } 84 84 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; } 86 87 87 88 void Print(Option_t *t=NULL) const;
Note:
See TracChangeset
for help on using the changeset viewer.