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

Public Member Functions | |
| RawCalibrationFitsBlock () | |
| RawCalibrationFitsBlock (const Int_t *block) | |
| virtual | ~RawCalibrationFitsBlock () |
| virtual std::ostream & | FormatToOStream (std::ostream &os, Option_t *option="") const |
| RawCalibrationFitsBlock (const RawCalibrationFitsBlock &rhs) | |
Static Public Member Functions | |
| void | SetDebugFlags (const UInt_t dbgflgs) |
| UInt_t | GetDebugFlags () |
Static Private Attributes | |
| UInt_t | fgDebugFlags = 0 |
|
|
Definition at line 33 of file RawCalibrationFitsBlock.cxx. 00034 : RawDataBlock() 00035 { 00036 // Default constructor 00037 }
|
|
|
Definition at line 40 of file RawCalibrationFitsBlock.cxx. 00041 : RawDataBlock(block) 00042 { 00043 // stored block format is: 00044 //--------------------- 00045 // 0 # words in block 00046 // 1 checksum 00047 // 2 Block Id 00048 //----- 00049 // 3 ... not yet specified 00050 00051 }
|
|
|
Definition at line 54 of file RawCalibrationFitsBlock.cxx. 00055 {
00056 // dtor
00057 }
|
|
|
Definition at line 34 of file RawCalibrationFitsBlock.h. 00035 : RawDataBlock(rhs) { ; }
|
|
||||||||||||
|
Reimplemented from RawDataBlock. Definition at line 60 of file RawCalibrationFitsBlock.cxx. References RawDataBlock::FormatToOStream(), Nav::GetName(), and option. 00062 {
00063
00064 option = "x"; // until specialized for hex dump
00065
00066 RawDataBlock::FormatToOStream(os,option);
00067 if (option[0] == 'X') return os;
00068
00069 // additional block specific formatted output is done here
00070
00071 os << "no specialized dump for " << this->GetName() << " class" << endl;
00072
00073 return os;
00074 }
|
|
|
Definition at line 31 of file RawCalibrationFitsBlock.h. 00031 { return fgDebugFlags; }
|
|
|
Definition at line 30 of file RawCalibrationFitsBlock.h. References fgDebugFlags. 00030 {fgDebugFlags=dbgflgs;}
|
|
|
Definition at line 14 of file RawCalibrationFitsBlock.cxx. Referenced by SetDebugFlags(). |
1.3.9.1