//////////////////////////////////////////
// Welcome to Galaxy Examinator Script
// Find more on www.galaxysemi.com
// File: adv_trend.csl
//////////////////////////////////////////
// Function to setup the Trend report section
SetTrendReport()
{
sysLog('*** This script creates a Trend chart! ***');
// Select file name to process
var vFile = sysPrompt('Select the STDF file to process...');
// Enter Test# to plot
var vTest = sysPrompt('Test# to plot:');
// 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('adv_trend','test_over_range',vTest);
// Get report created+show report at Trend page!
gexBuildReport('advanced');
}
// Script entry point
main()
{
// Call function to setup the Trend report
SetTrendReport();
} |