FACT++  1.0
void FactGui::slot_CameraMouseMove ( int  isw)
inlineprivatevirtual

Implements MainWindow.

Definition at line 3319 of file FactGui.h.

References PixelMapEntry::board(), PixelMapEntry::crate(), PixelMapEntry::hv_board, PixelMapEntry::hv_channel, PixelMap::index(), PixelMapEntry::patch(), PixelMapEntry::pixel(), and str.

3320  {
3321  const PixelMapEntry &entry = fPixelMap.index(isw);
3322 
3323  QString tipText;
3324  tipText += fRatesCanv->GetName();
3325  ostringstream str;
3326  str << setfill('0') <<
3327  " || HW: " << entry.crate() << "|" << entry.board() << "|" << entry.patch() << "|" << entry.pixel() << " (crate|board|patch|pixel)" <<
3328  " || HV: " << entry.hv_board << "|" << setw(2) << entry.hv_channel << " (board|channel)" <<
3329  " || ID: " << isw;
3330 
3331 
3332  tipText += str.str().c_str();
3333  fStatusBar->showMessage(tipText, 3000);
3334  }
int crate() const
Bias supply channel.
Definition: PixelMap.h:35
int patch() const
Definition: PixelMap.h:37
char str[80]
Definition: test_client.c:7
int pixel() const
Definition: PixelMap.h:38
PixelMap fPixelMap
Definition: FactGui.h:73
int board() const
Definition: PixelMap.h:36
int hv_board
gAPD index
Definition: PixelMap.h:30
const PixelMapEntry & index(int idx) const
Definition: PixelMap.h:107
int hv_channel
Bias suppply board.
Definition: PixelMap.h:31

+ Here is the call graph for this function: