#include "Validity/VldTimeStamp.h"#include "MessageService/MsgService.h"#include <climits>#include <math.h>#include <unistd.h>#include <sys/time.h>#include "TString.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: VldTimeStamp.cxx,v 1.29 2009/02/28 21:46:17 gmieg Exp $") | |
| std::ostream & | operator<< (std::ostream &os, const VldTimeStamp &ts) |
Variables | |
| const Int_t | kNsPerSec = 1000000000 |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 52 of file VldTimeStamp.cxx. 00053 {
00054 if (os.good()) {
00055 if (os.tie()) os.tie()->flush(); // instead of opfx
00056 os << ts.AsString("c");
00057 }
00058 // instead of os.osfx()
00059 if (os.flags() & std::ios::unitbuf) os.flush();
00060 return os;
00061 }
|
|
|
Definition at line 49 of file VldTimeStamp.cxx. |
1.3.9.1