Changeset 11803
- Timestamp:
- 08/05/11 22:48:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/FactGui.h
r11802 r11803 2974 2974 break; 2975 2975 2976 const int patch = i hw%4;2977 const int board = (i hw/4)%10;2978 const int crate = (i hw/4)/10;2976 const int patch = idx%4; 2977 const int board = (idx/4)%10; 2978 const int crate = (idx/4)/10; 2979 2979 QString tipText; 2980 2980 tipText += fRatesCanv->GetName(); 2981 tipText += " [";2982 tipText += "QCameraWidget";2983 tipText += "]: ";2984 2981 ostringstream str; 2985 str << " (hw=" << ihw << ") Patch=" << ii << "(hw=" << fPatchMapHW[idx] << "; Crate=" << crate << " Board=" << board << " Patch=" << patch << ")";2982 str << " || Pixel=" << isw << " (hw=" << ihw << ") || Patch=" << ii << " (hw=" << fPatchMapHW[idx] << "; Crate=" << crate << " Board=" << board << " Patch=" << patch << ")"; 2986 2983 tipText += str.str().c_str(); 2987 2984 fStatusBar->showMessage(tipText, 3000);
Note:
See TracChangeset
for help on using the changeset viewer.