#include "DatabaseInterface/DbiTableRow.h"#include "LeakChecker/Lea.h"#include "Validity/VldContext.h"#include <string>#include <iosfwd>Go to the source code of this file.
Classes | |
| class | DbuSubRunSummary |
Functions | |
| std::ostream & | operator<< (std::ostream &os, const DbuSubRunSummary &drs) |
|
||||||||||||
|
Definition at line 45 of file DbuSubRunSummary.cxx. References Detector::AsString(), and UtilRSM::RunTypeName(). 00046 {
00047 os << drs.GetName()
00048 << " " << Detector::AsString(drs.fDetector)
00049 << " Run " << drs.fRun
00050 << " SubRun " << drs.fSubRun
00051 << " RunType " << RunTypeName(drs.fRunType,drs.fDetector,drs.fRun)
00052 << " (" << drs.fRunType << ")"
00053 << endl
00054 << " {" << drs.fStartTime << "} {" << drs.fEndTime << "}"
00055 << endl
00056 << " TermCode " << drs.fTermCode
00057 << " Snarls " << drs.fSnarlRec
00058 << " Monitors " << drs.fMonitorRec
00059 << " LightInj " << drs.fLightInjRec
00060 << " Errors " << drs.fNErr
00061 << endl
00062 << " TimeFrames " << drs.fTimeFrames
00063 << " Dropped " << drs.fDroppedFrames
00064 << " Consistency 0x" << hex << drs.fConsistency << dec
00065 << endl
00066 << drs.fComment
00067 << endl;
00068
00069 return os;
00070 }
|
1.3.9.1