• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC Design
  3. Symbol view information in text format

Stats

  • Locked Locked
  • Replies 7
  • Subscribers 127
  • Views 15775
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Symbol view information in text format

AnnaS
AnnaS over 15 years ago

Hi All,

Can you please help me find out:

Is it possible to get symbol view information in text format (like a coordinates list).

PS: To be more clear I would like to bring this example:

Using Design->Plot we can get *.ps file. Then convert it to pdf format and see symbol's graphical view.

Thanks in advance.

Best Regards,

Anna 

 

  • Cancel
Parents
  • Quek
    Quek over 15 years ago
    Hi Anna

    I am also not too clear on the purpose of this but if shape info is what you want, hope that the following can help you. Load the file, open a symbol and press F10. Look for the file "symbolinfo.txt". : )

    Best regards
    Quek

    procedure( CCSsymbolInfo()
       let( (cv outPort sType sBbox pinName)
          cv=geGetWindowCellView()
          outPort=outfile("symbolinfo.txt")
          fprintf(outPort "Type\tbBox\tPin Name\n")
          fprintf(outPort "====\t====\t========\n")
          foreach(shape cv~>shapes
             sType=shape~>objType
             sBbox=shape~>bBox
             pinName=""
             if( shape~>pin~>name then
                pinName=shape~>pin~>name
             ) ;if
             fprintf(outPort "%s\t%L\t%s\n" sType sBbox pinName)
          ) ;foreach

          close(outPort)
          outPort=nil
          printf("Symbol info has been sent to file symbolinfo.txt")
       ) ;let
    ) ;procedure

    hiSetBindKey("Symbol" "F10" "CCSsymbolInfo()")



    === Sample output ===
    Type    bBox    Pin Name
    ====    ====    ========
    rect    ((-0.025 -0.025) (0.025 0.025)) IN
    line    ((0.0 0.0) (0.25 0.0))
    label   ((0.2875 -0.03125) (0.38125 0.03125))
    rect    ((1.85 -0.025) (1.9 0.025))     OUT
    line    ((1.625 0.0) (1.875 0.0))
    symbolinfo.il
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Quek
    Quek over 15 years ago
    Hi Anna

    I am also not too clear on the purpose of this but if shape info is what you want, hope that the following can help you. Load the file, open a symbol and press F10. Look for the file "symbolinfo.txt". : )

    Best regards
    Quek

    procedure( CCSsymbolInfo()
       let( (cv outPort sType sBbox pinName)
          cv=geGetWindowCellView()
          outPort=outfile("symbolinfo.txt")
          fprintf(outPort "Type\tbBox\tPin Name\n")
          fprintf(outPort "====\t====\t========\n")
          foreach(shape cv~>shapes
             sType=shape~>objType
             sBbox=shape~>bBox
             pinName=""
             if( shape~>pin~>name then
                pinName=shape~>pin~>name
             ) ;if
             fprintf(outPort "%s\t%L\t%s\n" sType sBbox pinName)
          ) ;foreach

          close(outPort)
          outPort=nil
          printf("Symbol info has been sent to file symbolinfo.txt")
       ) ;let
    ) ;procedure

    hiSetBindKey("Symbol" "F10" "CCSsymbolInfo()")



    === Sample output ===
    Type    bBox    Pin Name
    ====    ====    ========
    rect    ((-0.025 -0.025) (0.025 0.025)) IN
    line    ((0.0 0.0) (0.25 0.0))
    label   ((0.2875 -0.03125) (0.38125 0.03125))
    rect    ((1.85 -0.025) (1.9 0.025))     OUT
    line    ((1.625 0.0) (1.875 0.0))
    symbolinfo.il
    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information