Quantcast
Channel: Cadence Technology Forums
Viewing all articles
Browse latest Browse all 62619

Forum Post: RE: Add an item ADE-XL results tab (when right clicking on a test result)

$
0
0
Hi Patrick, Sorry, I was being a bit dumb. The session passed in to the callback is a "sev" session, and from that you need to get the "asi" session to be able to use the asi (Analog Simulation Interface - or OASIS) APIs. To do that you need to use the sevEnvironment function. There's no need to parse the input.scs. You can find out the names of the analyses enabled like this (this was something I just threw together to add as a RMB menu to test this out): procedure(abGetInformation(session) let((asiSess analysesEnabled) printf("SESSION=%L\n" session) asiSess=sevEnvironment(session) printf("PSF DIR=%L\n" asiGetPsfDir(asiSess)) analysesEnabled=mapcar('asiGetAnalysisName asiGetEnabledAnalysisList(asiSess)) printf("ANALYSES=%L\n" analysesEnabled) ) ) Only one analysis per test is fairly unusual, but if that's how you work then I'm sure you can do something sensible (albeit having to make an assumption about the file naming convention). Regards, Andrew.

Viewing all articles
Browse latest Browse all 62619

Trending Articles