diff --git a/hit2023v2_RAWCAL/display.cpp b/hit2023v2_RAWCAL/display.cpp index 3c6902b..a66873c 100644 --- a/hit2023v2_RAWCAL/display.cpp +++ b/hit2023v2_RAWCAL/display.cpp @@ -87,7 +87,14 @@ void BPMDisplay::plot(const QVector &data, const QVector(data[i]); //FOR RAW UNSIGNED + } + // dataY[i] = /*65535 -*/ static_cast(data[i]); //FOR RAW UNSIGNED + //dataY[i] = /*65535 -*/ data[i]; // signed, but both raw and cal will show signed + if (dataY[i] < min) min = dataY[i]; if (dataY[i] > max)