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

Definition at line 1358 of file biasctrl.cc.

References BIAS::kNumBoards.

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

1359  {
1360  Out() << dec << setprecision(2) << fixed << setfill(' ');
1361  for (int b=0; b<kNumBoards; b++)
1362  {
1363  if (!fPresent[b])
1364  {
1365  Out() << setw(2) << b << "-" << endl;
1366  continue;
1367  }
1368 
1369  PrintLineA(b, 0);
1370  PrintLineA(b, 8);
1371  PrintLineA(b, 16);
1372  PrintLineA(b, 24);
1373  }
1374  }
void PrintLineA(int b, int ch)
Definition: biasctrl.cc:1344
vector< bool > fPresent
Definition: biasctrl.cc:45
std::ostream & Out()
Definition: ConnectionUSB.h:47

+ Here is the caller graph for this function: