// @(#)root/base:$Id: TTime.h 20877 2007-11-19 11:17:07Z rdm $ // Author: Fons Rademakers 28/11/96 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TTime #define ROOT_TTime ////////////////////////////////////////////////////////////////////////// // // // TTime // // // // Basic time type with millisecond precision. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_Rtypes #include "Rtypes.h" #endif class TTime { private: Long_t fMilliSec; public: TTime(): fMilliSec(0) { } TTime(Long_t msec): fMilliSec(msec) { } TTime(const TTime &t): fMilliSec(t.fMilliSec) { } virtual ~TTime() { } TTime& operator=(const TTime &t); TTime operator+=(const TTime &t); TTime operator-=(const TTime &t); TTime operator*=(const TTime &t); TTime operator/=(const TTime &t); friend TTime operator+(const TTime &t1, const TTime &t2); friend TTime operator-(const TTime &t1, const TTime &t2); friend TTime operator*(const TTime &t1, const TTime &t2); friend TTime operator/(const TTime &t1, const TTime &t2); friend Bool_t operator== (const TTime &t1, const TTime &t2); friend Bool_t operator!= (const TTime &t1, const TTime &t2); friend Bool_t operator< (const TTime &t1, const TTime &t2); friend Bool_t operator<= (const TTime &t1, const TTime &t2); friend Bool_t operator> (const TTime &t1, const TTime &t2); friend Bool_t operator>= (const TTime &t1, const TTime &t2); operator long() const; operator unsigned long() const; const char *AsString() const; ClassDef(TTime,1) //Basic time type with milli second precision }; inline TTime& TTime::operator= (const TTime &t) { fMilliSec = t.fMilliSec; return *this; } inline TTime TTime::operator+=(const TTime &t) { fMilliSec += t.fMilliSec; return *this; } inline TTime TTime::operator-=(const TTime &t) { fMilliSec -= t.fMilliSec; return *this; } inline TTime TTime::operator*=(const TTime &t) { fMilliSec *= t.fMilliSec; return *this; } inline TTime TTime::operator/=(const TTime &t) { fMilliSec /= t.fMilliSec; return *this; } inline TTime::operator long() const { return fMilliSec; } inline TTime::operator unsigned long() const { return (ULong_t) fMilliSec; } inline TTime operator+(const TTime &t1, const TTime &t2) { return TTime(t1.fMilliSec + t2.fMilliSec); } inline TTime operator-(const TTime &t1, const TTime &t2) { return TTime(t1.fMilliSec - t2.fMilliSec); } inline TTime operator*(const TTime &t1, const TTime &t2) { return TTime(t1.fMilliSec * t2.fMilliSec); } inline TTime operator/(const TTime &t1, const TTime &t2) { return TTime(t1.fMilliSec / t2.fMilliSec); } inline Bool_t operator== (const TTime &t1, const TTime &t2) { return t1.fMilliSec == t2.fMilliSec; } inline Bool_t operator!= (const TTime &t1, const TTime &t2) { return t1.fMilliSec != t2.fMilliSec; } inline Bool_t operator< (const TTime &t1, const TTime &t2) { return t1.fMilliSec < t2.fMilliSec; } inline Bool_t operator<= (const TTime &t1, const TTime &t2) { return t1.fMilliSec <= t2.fMilliSec; } inline Bool_t operator> (const TTime &t1, const TTime &t2) { return t1.fMilliSec > t2.fMilliSec; } inline Bool_t operator>= (const TTime &t1, const TTime &t2) { return t1.fMilliSec >= t2.fMilliSec; } #endif