fix:beta energy calibration 中qc谱散点数据调整
This commit is contained in:
parent
5849612a3b
commit
f2d211b2b2
|
@ -1694,9 +1694,9 @@ public class SelfStationServiceImpl implements ISelfStationService {
|
|||
}
|
||||
//Beta-Gamma Spectrum: QC 散点图相关数据
|
||||
List<HistogramData> histogramDataList = new LinkedList<>();
|
||||
for (int column=0; column<bChannels; column++) {
|
||||
for (int row=0; row<gChannels; row++) {
|
||||
Long index = column * gChannels + row;
|
||||
for (int column=0; column<gChannels; column++) {
|
||||
for (int row=0; row<bChannels; row++) {
|
||||
Long index = column * bChannels + row;
|
||||
long count = hCounts.get(index.intValue());
|
||||
if (count>0) {
|
||||
HistogramData histogramData = new HistogramData();
|
||||
|
|
Loading…
Reference in New Issue
Block a user