|
| Statistics.csl |
 |
This script generates the test statistics report section for tests with a Cpk <= 1.33. When executed, you are prompted to enter the file to process. The script uses the function gexReportType('stats') to display the wafer map page directly instead of the standard home page. This saves you one mouse click!
Important note: this script doesn't overwrite your options and assumes your report type output is set to HTML. If you want to have the script fully control the options, merge it with the options.csl script.
The source code follows: |
//////////////////////////////////////////
// Welcome to Galaxy Examinator Script
// Find more on www.galaxysemi.com
// File: statistics.csl
//////////////////////////////////////////
// Function to setup the test statistics report section
SetStatsReport()
{
sysLog('*** This script creates a list of tests with Cpk less than 1.33! ***');
// Select file name to process
var vFile = sysPrompt('Select the STDF file to process...');
// Creates a group to hold the file to process!
var group_id = gexGroup('insert','Group1');
// Add selected file into that group.
gexFile(group_id,'insert',vFile,'all','all');
// Set options to all defaults
gexOptions('reset','all','default');
// Set Statistics report section to: include tests with Cpk less or equal to 1.33
gexReportType('stats','cpk','1.33');
// Get report created+show report at page test statistics!
gexBuildReport('statistics');
}
// Script entry point
main()
{
// Call function to setup the test statistics report
SetStatsReport();
} |
| |
|
|
|