#include <algorithm>#include "TKey.h"#include "TTree.h"#include "TFile.h"#include "TROOT.h"#include "TTreeFormula.h"#include "TBranchElement.h"#include "TRandom.h"#include "TFileCacheRead.h"#include "Persistency/Per.h"#include "Persistency/PerFile.h"#include "Persistency/PerFileManager.h"#include "Persistency/PerInputStream.h"#include "Conventions/Munits.h"#include "MessageService/MsgService.h"#include "MessageService/MsgFormat.h"#include "Record/RecMinos.h"#include "Record/RecMinosHdr.h"#include "Record/RecRecord.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &ms, const PerInputStream &pis) |
| CVSID ("$Id: PerInputStream.cxx,v 1.65 2009/04/29 23:55:53 arms Exp $") | |
| VldTimeStamp | make_delta (double t) |
|
||||||||||||
|
|
|
|
Definition at line 515 of file PerInputStream.cxx. Referenced by PerInputStream::AdvanceWindowTags(). 00515 {
00516 t /= Munits::s;
00517 time_t sec = (int)(t);
00518 int nsec = (int)(1.0e9*(t-sec));
00519 return VldTimeStamp(sec,nsec);
00520 }
|
|
||||||||||||
|
Definition at line 37 of file PerInputStream.cxx. 00038 { return pis.Print(ms); }
|
1.3.9.1