fix:旧beta的能量刻度增加自动校正;增加F状态的能谱查询和加载

This commit is contained in:
xiaoguangbin 2024-11-28 11:16:31 +08:00
parent 1375ed37e2
commit 0b23a18748
4 changed files with 10 additions and 1 deletions

View File

@ -337,6 +337,7 @@ export default {
})
} else {
this.$message.error(message)
this.isLoading = false
}
} catch (error) {
console.error(error)

View File

@ -1536,7 +1536,7 @@ export default {
nuclideName: possibleNuclide,
fileName,
list_identify: nuclides,
energyTolerance: parseFloat(this.model.tolerance)
energyTolerance: this.model.tolerance
})
if (success) {
nuclides.push(possibleNuclide)

View File

@ -668,9 +668,11 @@ export default {
oldScatterSeries,
newCToE,
newEToC,
tableWidgets,
} = res.result
this.c2e = CToE
this.e2c = EToC
this.list = tableWidgets
this.oldScatterSeries = oldScatterSeries
this.count = oldScatterSeries.length
@ -695,6 +697,11 @@ export default {
this.oldChartOption = cloneDeep(this.figureChartOption)
this.figureChartOption.series[1].markPoint.data = tableWidgets.map((item) => ({
xAxis: item.channel,
yAxis: item.energy,
}))
// reanalyzefittingReanalyze 20231101xiao
// todo fitting
if (this.getCache('CALIBRATION_BETA_' + this.newSampleData.inputFileName)) {

View File

@ -1603,6 +1603,7 @@ export default {
fileName,
list_identify: nuclides,
gammaRoiNum: this.currROIIndex + 1,
energyTolerance: this.model.tolerance
})
if (success) {
nuclides.push(possibleNuclide)