#include "TTimeStamp.h"
#include <iosfwd>
Go to the source code of this file.
Classes | |
class | TVldTimeStamp |
Encapsulate the seconds and ns since EPOCH. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &os, const TVldTimeStamp &vldts) |
Bool_t | operator== (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t | operator!= (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t | operator< (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t | operator<= (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t | operator> (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t | operator>= (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
TVldTimeStamp | operator- (const TVldTimeStamp &lhs, const TVldTimeStamp &rhs) |
Bool_t operator!= | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 275 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.
TVldTimeStamp operator- | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 299 of file TVldTimeStamp.hxx.
References TVldTimeStamp::GetNanoSec(), and TVldTimeStamp::GetSec().
00300 { 00301 return TVldTimeStamp(lhs.GetSec() - rhs.GetSec(), 00302 lhs.GetNanoSec() - rhs.GetNanoSec()); 00303 }
Bool_t operator< | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 279 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.
std::ostream& operator<< | ( | std::ostream & | os, | |
const TVldTimeStamp & | vldts | |||
) |
Definition at line 53 of file TVldTimeStamp.cxx.
Bool_t operator<= | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 284 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.
Bool_t operator== | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 271 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.
Bool_t operator> | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 289 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.
Bool_t operator>= | ( | const TVldTimeStamp & | lhs, | |
const TVldTimeStamp & | rhs | |||
) | [inline] |
Definition at line 294 of file TVldTimeStamp.hxx.
References TVldTimeStamp::fNanoSec, and TVldTimeStamp::fSec.