home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / cad / cadence / 572 < prev    next >
Encoding:
Text File  |  1993-01-12  |  1.4 KB  |  36 lines

  1. Newsgroups: comp.cad.cadence
  2. Path: sparky!uunet!timbuk.cray.com!walter.cray.com!baritone!toma
  3. From: toma@baritone (Thomas Arneberg  {66642 CF/DEV})
  4. Subject: Re: getting all cellviews
  5. Message-ID: <1993Jan12.162202.11747@walter.cray.com>
  6. Lines: 24
  7. Nntp-Posting-Host: baritone.cray.com
  8. Organization: Cray Research, Inc.
  9. References: <1993Jan12.172646.14372@venus.ic.cmc.ca>
  10. Date: 12 Jan 93 16:22:02 CST
  11.  
  12. In article <1993Jan12.172646.14372@venus.ic.cmc.ca> pas@jupiter.ic.cmc.ca writes:
  13. >In Cadence 4.2 skill, how might one go about
  14. >getting a list of all cells in a library?
  15.  
  16. I think the following should work. (I can't check for sure, 'cuz I can't 
  17. get Cadence running right now [I'm in the middle of 4.2.1 upgrade].)
  18.  
  19. ;### Print the names of all cells, given a library name:
  20. (procedure showcells(libname)
  21.   (let ( libid cellid )                ; (let is faster than prog)
  22.     libid = dbOpenLib(libname "" "" "r")    ; open lib for reading
  23.     (foreach cellid libid~>sortedCells
  24.       printf("%s\n", cellid~>name)
  25.     )
  26.   )
  27. )
  28.  
  29.   - Tom A.
  30. ---------------------------------------------+------------------------------
  31. ;-) I'd rather be ____  Thomas R. Arneberg   | Internet: toma@cray.com
  32. :-) singing in a |____| Senior IC Design Eng.| UUCP: ...!uunet!cray!toma
  33. :-) Barbershop  _|   _| Cray Research, Inc.  | CLAIM TO FAME: Loni Anderson 
  34. :-) Quartet!   (_)  (_) Chippewa Falls, Wisc.|   went to my high school 
  35. ---------------------------------------------+------------------------------
  36.