Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

maeGetResultsViewSelectedCellsDetails

maeGetResultsViewSelectedCellsDetails(
t_sessionName
)
=> l_resultData / l_faultResultData /nil

Description

Returns a list of data point ID, test name, and output name for each result value selected in the Detail, Detail-Transpose, or Fault results view of the currently visible run history. If the selected cell is in the column that does not show any results value, for example, Test or Output, no data is returned from that.

For the Detail-Transpose View, the function returns data only for the cells selected in the right pane.

Arguments

t_sessionName

Name of the maestro session.

Value Returned

l_resultData

A list containing lists of point, test and output name for each cell selected in the Detail or Detail - Transpose view of the Results tab.

l_faultResultData

A list of string values from each cell selected in the Fault view of the Results tab.

nil

In the following cases:

  • No result value is selected
  • The current results view none of Detail or Detail - Transpose
  • No history is loaded in the Results tab

Examples

The following example returns the values for the cells selected in the Results pane.

maeGetResultsViewSelectedCellsDetails("fnxSession0")
=>(
(3 "Oscillator_analysis" "/out")
(1 "Oscillator_analysis" "RiseTime")
(4 "Oscillator_analysis" "FallTime")
(8 "Oscillator_analysis" "FallTime")
(11 "Oscillator_analysis" "/out")
(7 "Oscillator_analysis" "RiseTime")
)

The following example uses the value returned by maeGetResultsViewSelectedCellsDetails to access the netlist directory:

t_sessionName = axlGetWindowSession( hiGetCurrentWindow())
resultsView = maeGetResultsViewSelectedCellsDetails(t_sessionName)
resultsViewOneList = car(resultsView)
testName = nth(1 resultsViewOneList)
netlistDir = axlGetPointNetlistDir(historyEntry testName)

Return to top
 ⠀
X