57   operator long() 
const;
 
   58   operator unsigned long() 
const;
 
   59   operator long long() 
const;
 
   60   operator unsigned long long() 
const;
 
 
   76inline TTime::operator 
long long()
 const 
 
   78inline TTime::operator 
unsigned long long()
 const 
 
   82   { 
return TTime(
t1.fMilliSec + 
t2.fMilliSec); }
 
 
   84   { 
return TTime(
t1.fMilliSec - 
t2.fMilliSec); }
 
 
   86   { 
return TTime(
t1.fMilliSec * 
t2.fMilliSec); }
 
 
   88   { 
return TTime(
t1.fMilliSec / 
t2.fMilliSec); }
 
 
   91   { 
return t1.fMilliSec == 
t2.fMilliSec; }
 
 
   93   { 
return t1.fMilliSec != 
t2.fMilliSec; }
 
 
   95   { 
return t1.fMilliSec < 
t2.fMilliSec; }
 
 
   97   { 
return t1.fMilliSec <= 
t2.fMilliSec; }
 
 
   99   { 
return t1.fMilliSec > 
t2.fMilliSec; }
 
 
  101   { 
return t1.fMilliSec >= 
t2.fMilliSec; }
 
 
#define ClassDef(name, id)
 
Bool_t operator>=(const TTime &t1, const TTime &t2)
 
Bool_t operator==(const TTime &t1, const TTime &t2)
 
Bool_t operator<=(const TTime &t1, const TTime &t2)
 
TTime operator*(const TTime &t1, const TTime &t2)
 
TTime operator+(const TTime &t1, const TTime &t2)
 
TTime operator/(const TTime &t1, const TTime &t2)
 
TTime operator-(const TTime &t1, const TTime &t2)
 
Bool_t operator<(const TTime &t1, const TTime &t2)
 
Bool_t operator>(const TTime &t1, const TTime &t2)
 
Bool_t operator!=(const TTime &t1, const TTime &t2)
 
Basic time type with millisecond precision.
 
friend Bool_t operator>=(const TTime &t1, const TTime &t2)
 
TTime operator*=(const TTime &t)
 
friend Bool_t operator==(const TTime &t1, const TTime &t2)
 
friend Bool_t operator<=(const TTime &t1, const TTime &t2)
 
TTime operator/=(const TTime &t)
 
friend TTime operator*(const TTime &t1, const TTime &t2)
 
friend TTime operator+(const TTime &t1, const TTime &t2)
 
const char * AsString() const
Return the time as a string.
 
friend TTime operator/(const TTime &t1, const TTime &t2)
 
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 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)