#include "TTimeStamp.h"#include <iosfwd>Go to the source code of this file.
Classes | |
| class | VldTimeStamp |
| Encapsulate the seconds and ns since EPOCH. More... | |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const VldTimeStamp &vldts) |
| Bool_t | operator== (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| Bool_t | operator!= (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| Bool_t | operator< (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| Bool_t | operator<= (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| Bool_t | operator> (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| Bool_t | operator>= (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
| VldTimeStamp | operator- (const VldTimeStamp &lhs, const VldTimeStamp &rhs) |
|
||||||||||||
|
Definition at line 271 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec.
|
|
||||||||||||
|
Definition at line 295 of file VldTimeStamp.h. References VldTimeStamp::GetNanoSec(), and VldTimeStamp::GetSec(). 00296 {
00297 return VldTimeStamp(lhs.GetSec() - rhs.GetSec(),
00298 lhs.GetNanoSec() - rhs.GetNanoSec());
00299 }
|
|
||||||||||||
|
Definition at line 275 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec. 00276 { return lhs.fSec < rhs.fSec ||
00277 ( lhs.fSec == rhs.fSec &&
00278 lhs.fNanoSec < rhs.fNanoSec ); }
|
|
||||||||||||
|
Definition at line 51 of file VldTimeStamp.cxx. 00052 {
00053 if (os.good()) {
00054 if (os.tie()) os.tie()->flush(); // instead of opfx
00055 os << ts.AsString("c");
00056 }
00057 // instead of os.osfx()
00058 if (os.flags() & std::ios::unitbuf) os.flush();
00059 return os;
00060 }
|
|
||||||||||||
|
Definition at line 280 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec. 00281 { return lhs.fSec < rhs.fSec ||
00282 ( lhs.fSec == rhs.fSec &&
00283 lhs.fNanoSec <= rhs.fNanoSec ); }
|
|
||||||||||||
|
Definition at line 267 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec.
|
|
||||||||||||
|
Definition at line 285 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec. 00286 { return lhs.fSec > rhs.fSec ||
00287 ( lhs.fSec == rhs.fSec &&
00288 lhs.fNanoSec > rhs.fNanoSec ); }
|
|
||||||||||||
|
Definition at line 290 of file VldTimeStamp.h. References VldTimeStamp::fNanoSec, and VldTimeStamp::fSec. 00291 { return lhs.fSec > rhs.fSec ||
00292 ( lhs.fSec == rhs.fSec &&
00293 lhs.fNanoSec >= rhs.fNanoSec ); }
|
1.3.9.1