Home galaxy
galaxy
galaxy galaxy galaxy
spacer
spacer
Arrow
spacer
Arrow
spacer
Histogram.csl
spacer
This script generates the histogram report section. When executed, you are prompted to enter the file to process. The script uses the function gexReportType('histogram') to display the histogram 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: histogram.csl
//////////////////////////////////////////

// Function to setup the histogram report section
SetHistogramReport()
{
sysLog('*** This script creates the histogram of all tests! ***');

// 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 Histogram report section: all tests
gexReportType('histogram','test_over_range','all');

// Get report created+show report at page histogram!
gexBuildReport('histogram');
}

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

 
spacer