ソースを参照

don't save the lowcounts particle

GSP 1 週間 前
コミット
b915693501

+ 3 - 1
OTSIncAMeasureApp/1-OTSMeasure/Measure/1-OTSInclution/SmplMeasureInclution.cs

@@ -34,6 +34,7 @@ namespace OTSModelSharp
             {
 
                 var anylysisparts = curFldData.GetListAnalysisParticles();
+                var finalParts=new List<COTSParticleClr>();
                 int nSize = anylysisparts.Count();
 
                 // go through all analysis particles
@@ -43,11 +44,12 @@ namespace OTSModelSharp
                     if (!IsLowCounts(anylysisparts[i]))
                     {
                         ClassifyIncAParticle(anylysisparts[i], libname);
+                        finalParts.Add(anylysisparts[i]);
                     }
 
                 }
 
-
+                curFldData.SetListAnalysisParticles(finalParts);
             }
             catch (Exception e)
             {

+ 2 - 2
OTSIncAMeasureApp/4-OTSSamplespaceGraphicsPanel/OTSSamplespaceWindow.cs

@@ -217,13 +217,13 @@ namespace OTSMeasureApp
                     //驱动SEM到中心位置
                     SetSEMToCenterPoint();
                     ReadSEMDataAndSetToCurrentSample();
-                    //PrepareVisualMeasureField(GetWorkingVisualSample());
+                   
                     break;
                 case "DriveSEMToCurrentLocation":
                     //驱动SEM到当前位置
                     SetSEMCurrentLocation();
                     ReadSEMDataAndSetToCurrentSample();
-                    //PrepareVisualMeasureField(GetWorkingVisualSample());
+                 
                     break;
                 case "SetSEMCenterLocation":
                     //将测量区域移到SEM当前位置

+ 0 - 1
OTSIncAMeasureApp/OTSIncAMeasureApp.csproj

@@ -450,7 +450,6 @@
     <Compile Include="4-OTSSamplespaceGraphicsPanel\SlopFocus.Designer.cs">
       <DependentUpon>SlopFocus.cs</DependentUpon>
     </Compile>
-    <Compile Include="6-OTSDisplayTreeViewData\CHistoryPrj.cs" />
     <Compile Include="7-OTSProgMgrInfo\OtherSelection.cs">
       <SubType>Form</SubType>
     </Compile>