FACT++  1.0
void FTM::StaticDataBoard::print ( std::ostream &  out) const

Definition at line 102 of file HeadersFTM.cc.

References fDAC, fEnable, fPrescaling, and i.

Referenced by FTM::operator<<().

103 {
104  out << "Enable=( " << std::hex;
105  for (int i=0; i<4; i++)
106  out << std::setw(4) << fEnable[i] << " ";
107  out << ") " << std::dec;
108 
109  out << "DAC A=" << fDAC[0] << " ";
110  out << "B=" << fDAC[1] << " ";
111  out << "C=" << fDAC[2] << " ";
112  out << "D=" << fDAC[3] << " ";
113  out << "H=" << fDAC[4] << " ";
114 
115  out << "Prescaling=" << fPrescaling << endl;
116 }
uint16_t fPrescaling
0-3 (A-D) Threshold of patches, 4 (H) Threshold for N out of 4 (12 bit each)
Definition: HeadersFTM.h:171
int i
Definition: db_dim_client.c:21
uint16_t fDAC[5]
enable of 4x9 pixels coded as 4x9bits
Definition: HeadersFTM.h:170
uint16_t fEnable[4]
Definition: HeadersFTM.h:169

+ Here is the caller graph for this function: