Changeset 11723 for trunk/FACT++/gui/RawEventsViewer
- Timestamp:
- 07/30/11 16:15:46 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
r11705 r11723 1515 1515 } 1516 1516 } 1517 it--; 1518 xval[nsamples] = it->first+1; 1517 xval[nsamples] = it==boardsHistoMap.begin() ? 0 : (--it)->first+1; 1519 1518 yval[nsamples] = 0; 1520 1519 nsamples++; … … 1554 1553 } 1555 1554 } 1556 it--; 1557 xval[nsamples] = it->first+1; 1555 xval[nsamples] = it==pixelHistoMap.begin() ? 0 : (--it)->first+1; 1558 1556 yval[nsamples] = 0; 1559 1557 nsamples++; … … 1593 1591 } 1594 1592 } 1595 it--; 1596 xval[nsamples] = it->first+1; 1593 xval[nsamples] = it==timeMarksMap.begin() ? 0 : (--it)->first+1; 1597 1594 yval[nsamples] = 0; 1598 1595 nsamples++; … … 1631 1628 break; 1632 1629 } 1633 } 1634 it--; 1635 xval[nsamples] = it->first+1; 1630 } 1631 xval[nsamples] = it==delayMap.begin() ? 0 : (--it)->first+1; 1636 1632 yval[nsamples] = 0; 1637 1633 nsamples++; … … 1642 1638 triggerDelayHistoItem.setSamples(xval, yval, nsamples); 1643 1639 #endif 1644 1645 1640 1646 1641 // startCellHistoZoom->setZoomBase(startCellHistoItem.boundingRect());
Note:
See TracChangeset
for help on using the changeset viewer.