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

Definition at line 1428 of file biasctrl.cc.

References BIAS::kNumBoards.

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

1429  {
1430  Out() << dec << setprecision(2) << fixed << setfill(' ');
1431  for (int b=0; b<kNumBoards; b++)
1432  {
1433  if (!fPresent[b])
1434  {
1435  Out() << setw(2) << b << "-" << endl;
1436  continue;
1437  }
1438 
1439  PrintLineGapd(b, 0);
1440  PrintLineGapd(b, 8);
1441  PrintLineGapd(b, 16);
1442  PrintLineGapd(b, 24);
1443  }
1444  }
void PrintLineGapd(int b, int ch)
Definition: biasctrl.cc:1416
vector< bool > fPresent
Definition: biasctrl.cc:45
std::ostream & Out()
Definition: ConnectionUSB.h:47

+ Here is the caller graph for this function: