open-insight/LSL2/STPROC/SPC_REACTOR_PARTICLES_RPT2.txt
Infineon\StieberD 7762b129af pre cutover push
2024-09-04 20:33:41 -07:00

310 lines
10 KiB
Plaintext

compile function SPC_REACTOR_PARTICLES_RPT2()
begin condition
pre:
post:
end condition
* THIS FUNCTION WILL PLOT MD2 VALUES UP TO A MAXIMUM OF 20 POINTS
declare function msg, set_property, send_event, dialog_box, utility, get_property
declare function set_printer, get_printer,Printer_Select
declare subroutine rlist, or_view, activate_save_select, yield
$insert rlist_equates
$insert msg_equates
$insert oiprint_equates
$insert spc_limits_equ
$insert logical
$insert spc_reactor_particles_equ
TableToUse = 'SPC_REACTOR_PARTICLES'
open TableToUse to TableVar else
MsgInfo = ''
MsgInfo<mcol$> = -2
MsgInfo<mrow$> = -2
MsgInfo<mtext$> = 'Unable to open ':TableToUse:'...'
Void = msg( '', MsgInfo )
return 0
end
Params = dialog_box( 'SPC_REACTOR_PARTICLES_RPT2', @window, '*CENTER' )
if Params = 'CANCEL' or Params = '' then
return 0
end
** PROGRAM IS DESIGNED TO ONLY GO UP TO 20 POINTS AND THE SPC_LIMITS WINDOW FOR
** REACTOR HAZE MAX VALIDATES FOR NO MORE THAN 20 INCREMENTS BASED ON .25 SO NOT MORE THAN 5.00
convert '*' to @fm in Params
TestDateFrom = Params<1>
TestDateThru = Params<2>
Reactor = Params<3>
DirToPrinter = Params<4>
Stat = utility( 'CURSOR', 'H' )
Stmt = 'SELECT ':TableToUse:' BY DATE_TESTED BY TIME_TESTED'
* XPOSS ARE STATIC CAUSE THERE WILL ONLY BE SEVEN PLOTS PRINTED PER PAPER
XPosS1 = 1.11:@fm:2.49:@fm:3.87:@fm:5.25:@fm:6.63:@fm:8.01:@fm:9.38
XPosS2 = 1.17:@fm:2.55:@fm:3.93:@fm:5.31:@fm:6.69:@fm:8.07:@fm:9.44
YStartPos1 = ''
YStartPos2 = ''
XPosLast2 = ''
YPosLast2 = ''
EndStmt = ''
* TEST DATE INFORMATION
if TestDateFrom and TestDateThru then
EndStmt := " WITH DATE_TESTED FROM ":QUOTE(TestDateFrom):' TO ':QUOTE(TestDateThru)
end else
if TestDateFrom then
EndStmt := " WITH TEST_DATE GE ":QUOTE(TestDateFrom)
end
if TestDateThru then
EndStmt := " WITH TEST_DATE LE ":QUOTE(TestDateThru)
end
end
EndStmt := " AND WITH REACTOR = ":QUOTE(Reactor)
Stmt:=EndStmt
Void = set_status(0)
rlist( Stmt, target_activelist$, '', '', '' )
if @reccount then
TestDateS = ''
TestTimeS = ''
ShiftS = ''
EntryIDS = ''
HazeS = ''
PointsPlotted = 0
YDeltaNums = ''
PrintPageBreak = 0
if DirToPrinter = 'Yes' then
PrnFlag = 0
end else
PrnFlag = 3 ;* THREE IN OIPI IS SCREEN MAXIMIZED
end
* PULL OFF VARIABLES
SPCLimitInfo = xlate( 'CONFIG', 'SPC_LIMITS', '', 'X' )
RHMin = SPCLimitInfo<ReactHazeMin$>
RHMax = SPCLimitInfo<ReactHazeMax$>
RHDateChg = oconv( SPCLimitInfo<ReactHazeDate$>, 'D2/' )
PrintPath = Printer_Select('',1) ;* Get default printer path
Void = set_printer( 'INIT', '', '', '':@fm:'':@fm:'':@fm:'', 1, PrnFlag:@fm:75 ,PrintPath)
Void = set_printer( 'LINESTYLE', PS_SOLID:@fm:1 )
Void = set_printer( 'FILLSTYLE', BS_SOLID )
gosub PrintTOF
Eof = false$
NumKeys = @reccount
Cnt = 0
loop
readnext RHKey else Eof = true$
until Eof
read RHEntry from TableVar, RHKey else
MsgInfo = ''
MsgInfo<mcol$> = -2
MsgInfo<mrow$> = -2
MsgInfo<mtext$> = 'Error reading ':RHKey:' from ':TableToUse:'!'
MsgInfo<micon$> = '!'
Void = MSG( '', MsgInfo )
return 0
end
* PULL OFF VARIABLES
TestDate = oconv( RHEntry<spc_reactor_particles_date_tested$>, 'D2/' )
TestTime = oconv( RHEntry<spc_reactor_particles_time_tested$>, 'MTH' )
Shift = RHEntry<spc_reactor_particles_shift$>
EntryID = RHEntry<spc_reactor_particles_entry_id$>
Haze = RHEntry<spc_reactor_particles_haze$>
*
locate Haze in YDeltaNums using @fm setting DPos then
YPosToUse1 = YStartPos1<DPos>
YPosToUse2 = YStartPos2<DPos>
end else
if Haze > RHMax then
* POINT OUT OF CONTROL HIGH
* SET OTHER VARS UP TOP FOR OUT OF CONTROL
YPosToUse1 = OutofControlY
YPosToUse2 = OutofControlY+.06
end else
* NOT OUT OF CONTROL BUT IS NOT EVENLY DIVISIBLE BY ONE OF THE LINES
* FIND OUT WHICH IT IS CLOSER TO
locate Haze in YDeltaNums by 'DR' using @fm setting Adjpos then
* THIS WILL NOT HAPPEN BASED ON ABOVE LOGIC
end
BTop = YDeltaNums<AdjPos-1>
BBot = YDeltaNums<AdjPos>
TopDif = BTop-Haze
BotDif = Haze-BBot
if TopDif = BotDif then
* BASICALLY IF IT IS EXACLY IN THE MIDDLE OF TWO POINTS
* THEN PUT IT TO THE HIGHER SIDE
YPosToUse1 = YStartPos1<AdjPos>
YPosToUse2 = YStartPos2<AdjPos>
end
if TopDif > BotDif then
* CLOSER TO BOTTOM POINT
YPosToUse1 = YStartPos1<AdjPos>
YPosToUse2 = YStartPos2<AdjPos>
end else
* CLOSER TO TOP POINT
YPosToUse1 = YStartPos1<AdjPos-1>
YPosToUse2 = YStartPos2<AdjPos-1>
end
end
end
if PointsPlotted = 7 then ;* CAN ONLY PLOT SEVEN SO DO A PAGEBREAK AND PRINT TOF AND PRINT COLUMNS
PrintPageBreak = 1
gosub PrintBOF
gosub PrintTOF
end
XPosToUse1 = XPosS1<PointsPlotted+1>
XPosToUse2 = XPosS2<PointsPlotted+1>
if YPosToUse1 = OutofControlY then
Void = set_printer( "TEXTXY", oconv( Haze, 'MD2' ), XPosToUse1-.06:@fm:OutofControlY-.19, '', 0 )
end
*
TestDateS<1,-1> = TestDate
TestTimeS<1,-1> = TestTime
ShiftS<1,-1> = Shift
EntryIDS<1,-1> = EntryID
HazeS<-1> = Haze
* SET YOUR POINT AND THEN SET XY FOR THE LINE TO
Void = set_printer( 'ELLIPSE', XPosToUse1:@FM:YPosToUse1:@FM:XPosToUse2:@FM:YPosToUse2, 0 )
PointsPlotted += 1
if PointsPlotted > 1 then
Void = set_printer( 'LINE', XPosLast2-.03:@fm:YPosLast2:@fm:XPosToUse2-.03:@fm:YPosToUse2, 0 )
end
YPosLast2 = YPosToUse2
XPosLast2 = XPosToUse2
repeat
PrintPageBreak = 0
gosub PrintBOF
Void = set_printer( 'TERM', 1 )
end else
MsgInfo = ''
MsgInfo<mcol$> = -2
MsgInfo<mrow$> = -2
MsgInfo<mtext$> = 'NO Records meeting your date criteria!!'
MsgInfo<micon$> = '!'
Void = MSG( '', MsgInfo )
end
return 0
*===============================================================================================*
PrintTOF:
Font = "Courier New,18,C,1"
convert ',' to @fm in Font
Tfont = Font
Stat = set_printer( 'FONT', Font )
Void = set_printer( 'TEXT', 'Reactor# ':Reactor:' Haze Control Chart' )
Font<2> = 12
Font<3> = 'L'
Stat = set_printer( 'FONT', Font )
Void = set_printer( 'TEXT', '' )
TableColInfo = '^+4680':@vm:'^+4680':@vm:'^+4680'
PrintTbl = 'Characteristic Measured: Haze':@vm:'Recipe: Production':@vm:'Date ctl Limits Calculated: ':RHDateChg
Void = set_printer( 'ADDTABLE', TableColInfo, '', PrintTbl, '', '', 0, TB_ALL:@fm:'C' )
PrintTbl = 'Unit of Measure: Haze Reading on Surfscan':@vm:'Frequency: every Wednesday':@vm:'Limits Calculated By: Peter Z.'
Void = set_printer( 'ADDTABLE', TableColInfo, '', PrintTbl, '', '', 0, TB_ALL:@fm:'C' )
PrintTbl = 'Sample ID:1 test wafer with <200 particles':@vm:'Upper Limit is: ':oconv( RHMax, 'MD2' ):@vm:'Target: ':oconv( RHMin, 'MD2' ) ;* REMEMBER MIN IS TARGET IN THIS CASE
Void = set_printer( 'ADDTABLE', TableColInfo, '', PrintTbl, '', '', 0, TB_ALL:@fm:'C' )
Void = set_printer( 'TEXT', '' )
Void = set_printer( 'TEXT', 'Delta X-Bar' )
Void = set_printer( 'TEXT', '' )
Void = set_printer( 'TEXT', 'UCL-':oconv( RHMax, 'MD2' ) )
TableColInfo = '^+720':@vm:'^+1987':@vm:'^+1987':@vm:'^+1987':@vm:'^+1987':@vm:'^+1987':@vm:'^+1987':@vm:'^+1987'
CurPos = get_printer( 'POS' )<2>
OutofControlY = CurPos-.13
YStartPos1 = ''
YStartPos2 = ''
YDeltaNums = ''
for i = RHMax to RHMin step -25
PrintTbl = oconv( i, 'MD2' ):@vm:'':@vm:'':@vm:'':@vm:'':@vm:'':@vm:'':@vm:''
Void = set_printer( 'ADDTABLE', TableColInfo, '', PrintTbl, '', '', 1, TB_ALL:@fm:'L' )
CurPos = get_printer( 'POS' )<2>
CurPos -= .13
TStartPos1 = CurPos
TStartPos2 = CurPos+.06
YDeltaNums<-1> = i
YStartPos1<-1> = TStartPos1
YStartPos2<-1> = TStartPos2
next i
return
*===============================================================================================*
PrintBOF:
Void = set_printer( 'TEXT', '' )
Font<2> = 8
Font<3> = 'L'
Stat = set_printer( 'FONT', Font )
ColSize = '^+1986'
NewColSize = ''
ColData = 'Haze'
for i = 1 to PointsPlotted
NewColSize<1,-1> = ColSize
ColData<1,-1> = 'Haze'
next i
NewColSize = '^+720':@vm:NewColSize
ColData = '':@vm:ColData
Void = set_printer( 'ADDTABLE', NewColSize, '', ColData, '', '', 0, TB_ALL:@fm:'L' )
ColData = ''
for i = 1 to PointsPlotted
ColData<1,-1> = oconv( HazeS<i>, 'MD2' )
next i
ColData = '':@vm:ColData
Void = set_printer( 'ADDTABLE', NewColSize, '', ColData, '', '', 1, TB_ALL:@fm:'L' )
*
Void = set_printer( 'TEXT', '' )
ColSize = '^+1987'
NewColSize = ''
for i = 1 to PointsPlotted
NewColSize<1,-1> = ColSize
next i
NewColSize = '^+720':@vm:NewColSize
NewColData = ''
NewColData<-1> = TestDateS
NewColData<-1> = TestTimeS
NewColData<-1> = ShiftS
NewColData<-1> = EntryIDS
NewColData = insert( NewColData, 1, 1, 0, 'Date' )
NewColData = insert( NewColData, 2, 1, 0, 'Time' )
NewColData = insert( NewColData, 3, 1, 0, 'Shift' )
NewColData = insert( NewColData, 4, 1, 0, 'User' )
Void = set_printer( 'ADDTABLE', NewColSize, '', NewColData, '', '', 1, TB_ALL:@fm:'L' )
TestDateS = ''
TestTimeS = ''
ShiftS = ''
EntryIDS = ''
HazeS = ''
PointsPlotted = 0
Font<2> = 12
Font<3> = 'L'
Stat = set_printer( 'FONT', Font )
if PrintPageBreak then
Void = set_printer( 'PAGEBREAK' )
end
return
*===============================================================================================*