|
| Wafermap Gradient.csl |
 |
wafermap_gradient.csl
This script generates the parametric wafer map report for a given test. When executed, you are prompted to enter the file to process, then the test#. The script uses the function gexReportType('wafer') 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: wafermap_gradient.csl
//////////////////////////////////////////
// Function to setup the wafer map report section
SetWafermapReport()
{
sysLog('*** Script for Parametric wafermap! ***');
// Select file name to process
var vFile = sysPrompt('Select the STDF file to process...');
// Select test # to process
var vTest = sysPrompt('Enter test# 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 wafer map report section to: param_over_range wafer map
gexReportType('wafer','param_over_range',vTest);
// Get report created+show report at page wafer-map!
gexBuildReport('wafer');
}
// Script entry point
main()
{
// Call function to setup the wafer map report
SetWafermapReport();
} |
| |
|
|
|