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

Definition at line 53 of file HeadersFTM.cc.

References fActiveFTU, fFTU, fNumBoards, and fNumBoardsCrate.

Referenced by FTM::operator<<().

54 {
55  out << "Number of boards responded: " << std::dec << fNumBoards << " (";
56  out << fNumBoardsCrate[0] << ", ";
57  out << fNumBoardsCrate[1] << ", ";
58  out << fNumBoardsCrate[2] << ", ";
59  out << fNumBoardsCrate[3] << ")" << std::endl;
60  out << "Active boards: " << std::hex;
61  out << std::setfill('0');
62  out << std::setw(4) << fActiveFTU[0];
63  out << std::setw(4) << fActiveFTU[1];
64  out << std::setw(4) << fActiveFTU[2];
65  out << std::setw(4) << fActiveFTU[3] << std::dec << std::endl;
66  for (int c=0; c<4; c++)
67  for (int b=0; b<10; b++)
68  {
69  out << ' ' << c << ':' << std::setfill('0') << std::setw(2) << b << ": ";
70  out << fFTU[c][b];
71  }
72 }
FtuResponse fFTU[4][10]
List of active FTU boards in crate 0-3.
Definition: HeadersFTM.h:640
uint16_t fNumBoardsCrate[4]
Total number of boards responded.
Definition: HeadersFTM.h:637
uint16_t fActiveFTU[4]
Num of board responded in crate 0-3.
Definition: HeadersFTM.h:638
uint16_t fNumBoards
Definition: HeadersFTM.h:636

+ Here is the caller graph for this function: