|
@@ -1188,15 +1188,15 @@ namespace OTSIncAReportGraph.Controls
|
|
|
string str_stdname = "";
|
|
|
string str_IncALibName = "";
|
|
|
|
|
|
- List<int> FLID = new List<int>() { 0, 1, 2, 4, 6, 7, 8, 9 };
|
|
|
- List<string> NameList = new List<string>() { "过小颗粒", "过大颗粒", "亮度不在分析范围内的颗粒", "低计数率颗粒", "不含分析元素的颗粒", "非夹杂物颗粒SiC", "非夹杂物颗粒FeO", "未识别颗粒" };
|
|
|
+ List<int> FLID = new List<int>() { 0, 1, 2, 4, 6, 9 };
|
|
|
+ List<string> NameList = new List<string>() { "过小颗粒", "过大颗粒", "亮度不在分析范围内的颗粒", "低计数率颗粒", "不含分析元素的颗粒", "未识别颗粒" };
|
|
|
|
|
|
if (in_dparticle.STDTypeID < 1000)
|
|
|
{
|
|
|
int index = FLID.IndexOf(in_dparticle.TypeId);
|
|
|
if (index == -1)
|
|
|
{
|
|
|
- index = 7;
|
|
|
+ index = 5;
|
|
|
}
|
|
|
//小于1000,使用系统默认分类
|
|
|
str_IncALibName = NameList[index];
|