FACT++  1.0
void ConnectionBias::PrintV ( )
inline

Definition at line 1394 of file biasctrl.cc.

References BIAS::kNumBoards.

Referenced by StateMachineBias< T, S >::StateMachineBias().

1395  {
1396  Out() << dec << setprecision(2) << fixed << setfill(' ');
1397  for (int b=0; b<kNumBoards; b++)
1398  {
1399  if (!fPresent[b])
1400  {
1401  Out() << setw(2) << b << "-" << endl;
1402  continue;
1403  }
1404 
1405  PrintLineV(b, 0);
1406  PrintLineV(b, 4);
1407  PrintLineV(b, 8);
1408  PrintLineV(b, 12);
1409  PrintLineV(b, 16);
1410  PrintLineV(b, 20);
1411  PrintLineV(b, 24);
1412  PrintLineV(b, 28);
1413  }
1414  }
void PrintLineV(int b, int ch)
Definition: biasctrl.cc:1376
vector< bool > fPresent
Definition: biasctrl.cc:45
std::ostream & Out()
Definition: ConnectionUSB.h:47

+ Here is the caller graph for this function: