#include "DatabaseUpdater/DbuVaChipSpars.h"
#include "MessageService/MsgService.h"
#include "DatabaseInterface/DbiOutRowStream.h"
#include "DatabaseInterface/DbiResultSet.h"
#include "DatabaseInterface/DbiValidityRec.h"
#include <iostream>
#include <cassert>
#include "DatabaseInterface/DbiResultPtr.tpl"
#include "DatabaseInterface/DbiWriter.tpl"
Go to the source code of this file.
Functions | |
CVSID ("$Id: DbuVaChipSpars.cxx,v 1.7 2007/02/15 14:15:48 rhatcher Exp $ CVSID_DBIRESULTPTR ") | |
std::ostream & | operator<< (std::ostream &os, const DbuVaChipSpars &drs) |
Variables | |
const Int_t | maskPedMode = 0x00200000 |
const Int_t | maskSparsMode = 0x00400000 |
const Int_t | maskComMode = 0x00800000 |
const Int_t | maskModes = maskPedMode | maskSparsMode | maskComMode |
const Int_t | shiftModes = 21 |
CVSID | ( | "$Id: DbuVaChipSpars. | cxx, | |
v 1.7 2007/02/15 14:15:48 rhatcher Exp $CVSID_DBIRESULTPTR" | ||||
) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const DbuVaChipSpars & | drs | |||
) |
Definition at line 49 of file DbuVaChipSpars.cxx.
References RawChannelId::AsString(), DbuVaChipSpars::fChanPed, and DbuVaChipSpars::fRawChannelId.
00050 { 00051 os << drs.GetName() 00052 << " " << drs.fRawChannelId.AsString("e"); 00053 for (int i=0; i<22; ++i) { 00054 if (0==i || 11==i) os << endl << " | "; 00055 os << setw(5) << drs.fChanPed[i]; 00056 } 00057 os << endl; 00058 00059 return os; 00060 }
const Int_t maskComMode = 0x00800000 |
Definition at line 43 of file DbuVaChipSpars.cxx.
const Int_t maskModes = maskPedMode | maskSparsMode | maskComMode |
Definition at line 44 of file DbuVaChipSpars.cxx.
const Int_t maskPedMode = 0x00200000 |
Definition at line 41 of file DbuVaChipSpars.cxx.
const Int_t maskSparsMode = 0x00400000 |
Definition at line 42 of file DbuVaChipSpars.cxx.
const Int_t shiftModes = 21 |
Definition at line 45 of file DbuVaChipSpars.cxx.