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
Value Returned
Examples
asiGetLogFileList( asiGetCurrentSession())
=> ("logFile")
Returns the list of log files for the session.
defmethod( asiGetLogFileList ( ( _session <yourSimulator>_session ) ) '( "<yourSimulator>logFile" )
)
Overloads the asiGetLogFileList function to return the log file for your simulator.
Return to top