1 /*************************************************************************** 2 * 3 * $Id: StMem.h,v 1.2 2001/03/05 00:50:56 perev Exp $ 4 * 5 * Author: Victor Perev, Jul 2000 6 *************************************************************************** 7 * 8 * Description: 9 * Simplified version of StMemoryInfo class of Thomas Ullrich 10 *************************************************************************** 11 * 12 * 13 **************************************************************************/ 14 #ifndef StMem_h 15 #define StMem_h 16 17 class StMem { 18 friend class nobody; 19 public: 20 static double Used(); 21 static double ESize(); 22 static void Print(const char *tit=""); 23 private: 24 StMem(){}; 25 ~StMem(){}; 26 27 static double fUsed; 28 /* 29 ClassDef(StMem,0) 30 */ 31 }; 32 33 #endif 34