#include <RawDaqHeader.h>
Inheritance diagram for RawDaqHeader:

Public Member Functions | |
| RawDaqHeader () | |
| RawDaqHeader (const VldContext &vldc, Int_t run, Short_t subrun, Short_t runtype, Int_t timeframe) | |
| virtual | ~RawDaqHeader () |
| Int_t | GetRun () const |
| Short_t | GetSubRun () const |
| Short_t | GetRunType () const |
| Int_t | GetTimeFrameNum () const |
| virtual std::ostream & | FormatToOStream (std::ostream &os, Option_t *option="") const |
Protected Attributes | |
| Int_t | fRun |
| Short_t | fSubRun |
| Short_t | fRunType |
| Int_t | fTimeFrame |
|
|
Definition at line 21 of file RawDaqHeader.cxx. 00021 : 00022 RawHeader(), fRun(-1), fSubRun(-1), fRunType(-1), fTimeFrame(-1) 00023 { 00024 // Default constructor 00025 }
|
|
||||||||||||||||||||||||
|
Definition at line 28 of file RawDaqHeader.cxx. References run(). 00029 : 00030 RawHeader(vldc), fRun(run), fSubRun(subrun), fRunType(runtype), 00031 fTimeFrame(timeframe) 00032 { 00033 00034 }
|
|
|
Definition at line 25 of file RawDaqHeader.h. 00025 { ; }
|
|
||||||||||||
|
Reimplemented from RawHeader. Reimplemented in RawDaqSnarlHeader. Definition at line 37 of file RawDaqHeader.cxx. References RawHeader::FormatToOStream(), GetRun(), GetRunType(), GetSubRun(), GetTimeFrameNum(), and option. Referenced by RawDaqSnarlHeader::FormatToOStream(). 00039 {
00040 RawHeader::FormatToOStream(os,option);
00041 os << endl
00042 << " Run " << GetRun()
00043 << " SubRun " << GetSubRun()
00044 << " RunType " << GetRunType()
00045 << " TimeFrame " << GetTimeFrameNum();
00046 return os;
00047 }
|
|
|
|
|
|
|
Definition at line 37 of file RawDaqHeader.h. |
|
|
Definition at line 39 of file RawDaqHeader.h. |
|
|
Definition at line 38 of file RawDaqHeader.h. |
|
|
Definition at line 40 of file RawDaqHeader.h. |
1.3.9.1