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

asiGetLogFileList

asiGetLogFileList( 
o_session
)
=> l_logFiles / nil

Description

Returns a list of the names of the log files.

Note for Integrators: This procedure is defined as a method for the Analog Class. You can overload this method to return your list of log files, as shown in the example for integrators.

Argument

o_session

Session object.

Value Returned

l_logFiles

Returns the list of log files.

  • For analog-only simulation, the following list is returned: ("logFile")
  • For mixed-signal simulation, the following list is returned: ( "logFile" "logFileVerilog" )

nil

There is an error.

Examples

asiGetLogFileList( asiGetCurrentSession())
=> ("logFile")

Returns the list of log files for the session.

Example for Integrators

defmethod( asiGetLogFileList ( ( _session <yourSimulator>_session ) )
    '( "<yourSimulator>logFile" )
)

Overloads the asiGetLogFileList function to return the log file for your simulator.


Return to top
 ⠀
X