Home galaxy
galaxy
galaxy galaxy galaxy
spacer
spacer
Arrow
spacer
Arrow
spacer
Wafermap.csl
spacer

This script generates the wafer map report section using the software binning information. When executed, you are prompted to enter the file to process. 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.csl
//////////////////////////////////////////

// Function to setup the wafer map report section
SetWafermapReport()
{
sysLog('*** This script creates a wafermap of Software binning! ***');

// 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 wafer map report section to: SOFT_BIN wafer map
gexReportType('wafer','soft_bin');

// Get report created+show report at page wafer-map!
gexBuildReport('wafer');
}

// Script entry point
main()
{
// Call function to setup the wafer map report
SetWafermapReport();
}
 
spacer