SDC C-Project CF Review 프로그램
KYH
2021-06-07 fe67777d8335fb6adb3601e5ef1b31ff22ea6792
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include "StdAfx.h"
#include "CHReviewRecipe/RcpUserDefectInfo.h"
 
CRcpUserDefectInfo::CRcpUserDefectInfo(void)
{
    Reset();
}
 
CRcpUserDefectInfo::~CRcpUserDefectInfo(void)
{
    Reset();
}
 
void CRcpUserDefectInfo::Reset()
{
    m_dPosX = 0.0;
    m_dPosY = 0.0;
    m_nCellSide = 0;
    m_nInspectionMode = 0;
    m_nSharedDefectIndex = 0;
    m_strCellId     = _T("");
    m_strCellId2 = _T("");
    m_nReflowCellIndex = 0;
}
 
void CRcpUserDefectInfo::SetInfo(const CRcpUserDefectInfo& rhs)
{
    *this = rhs;
 
//     m_dPosX = rhs.m_dPosX;
//     m_dPosY = rhs.m_dPosY;
}
 
void CRcpUserDefectInfo::GetInfo(CRcpUserDefectInfo& rhs)
{
    rhs = *this;
 
//     rhs.m_dPosX =m_dPosX;
//     rhs.m_dPosY = m_dPosY;
}
 
 
CRcpReflowParameter::CRcpReflowParameter(void)
{
    Reset();
}
 
CRcpReflowParameter::~CRcpReflowParameter(void)
{
    Reset();
}
 
void CRcpReflowParameter::Reset()
{
    m_nCellSide = 0;
    m_nInspectionMode = 0;
 
    m_nAPixel = 0;
    m_nBPixel = 0;
    m_nCPixel = 0;
    m_nDPixel = 0;
//     m_nDam1 = 0;
// 
//     m_nBaseTh = 0;
    m_nDam2Th = 0;
    m_nDam1Th = 0;
    m_nDam4Th = 0;
    m_nDam3Th = 0;
    m_nPixelScale = 10;
 
    m_strMasterFileName = _T("");
}
 
void CRcpReflowParameter::SetInfo(const CRcpReflowParameter& rhs)
{
    *this = rhs;
 
    //     m_dPosX = rhs.m_dPosX;
    //     m_dPosY = rhs.m_dPosY;
}
 
void CRcpReflowParameter::GetInfo(CRcpReflowParameter& rhs)
{
    rhs = *this;
 
    //     rhs.m_dPosX =m_dPosX;
    //     rhs.m_dPosY = m_dPosY;
}