• 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. Ploting schematic without showing component parameters

Stats

  • Locked Locked
  • Replies 12
  • Subscribers 128
  • Views 22304
  • 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

Ploting schematic without showing component parameters

rickrevolta
rickrevolta over 15 years ago

Hello everybody

 I´m trying to plot my schematic at virtuoso schematic editor but I don not want to plot the component parameters. This is a plot for documentation purposes and it get a little confuse to see with a lot of infomation right next each transistor. How can I take off the component parameters  to plot the schematic ?

thanks

rickrevolta

  • Cancel
Parents
  • david jk
    david jk over 5 years ago

    Hi Guys,

    Is there any way that the foreach loop Rick suggested I bind to a key and toggle with the key the visibility on and off? Is there also a way also to remove cell name labels, and the labels on the nets?

    Thx,

    David

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 5 years ago in reply to david jk

    Not sure I quite understand the question David (and by the way, posting on the end of a 10 year old thread is not a good idea, as per the forum guidelines), but maybe this code will do what you want?

    /* abToggleLabelsForPlotting.il
    
    Author     A.D.Beckett
    Group      Custom IC (UK), Cadence Design Systems Ltd.
    Language   SKILL
    Date       Apr 29, 2020 
    Modified   
    By         
    
    Function to simply toggle label visibility on or off
    
    ***************************************************
    
    SCCS Info: @(#) abToggleLabelsForPlotting.il 04/29/20.18:30:39 1.1
    
    */
    
    /****************************************************************
    *                                                               *
    *    abToggleLabelsForPlotting([?win winId] [?instLabels t]     *
    *          [?termLabels t] [?wireLabels t] [?notes t]           *
    *                                                               *
    *     Toggles labels on or off for plotting. By default all     *
    * label types are toggled but you can control them individually *
    * with the keyword arguments. Note that the current visibility  *
    *        is determined from the first layer it looks at         *
    *                                                               *
    ****************************************************************/
    
    procedure(abToggleLabelsForPlotting(@key 
        (win hiGetCurrentWindow())
        (instLabels t)
        (termLabels t)
        (wireLabels t)
        (notes t)
        )
      let((lpps first lppId visibility cvId techId)
        lpps=`(
          ,@(instLabels &&
            `(
              ("device" "annotate")
              ("annotate" "drawing")
              ("annotate" "drawing7")
              )
            )
          ,@(notes &&
            `(
              ("text" "drawing")
              ("text" "drawing1")
              )
            )
          ,@(termLabels &&
            `(
              ("annotate" "drawing8")
              )
            )
          ,@(wireLabels &&
            `(
              ("wire" "label")
              )
            )
          )
        first=car(lpps)
        cvId=geGetEditCellView(win)
        techId=techGetTechFile(cvId)
        lppId=techGetLP(techId first)
        visibility=!lppId~>visible
        foreach(lpp lpps
          lppId=techGetLP(techId lpp)
          lppId~>visible=visibility
        )
        hiRedraw(win)
        visibility
      )
    )
    

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • Andrew Beckett
    Andrew Beckett over 5 years ago in reply to david jk

    Not sure I quite understand the question David (and by the way, posting on the end of a 10 year old thread is not a good idea, as per the forum guidelines), but maybe this code will do what you want?

    /* abToggleLabelsForPlotting.il
    
    Author     A.D.Beckett
    Group      Custom IC (UK), Cadence Design Systems Ltd.
    Language   SKILL
    Date       Apr 29, 2020 
    Modified   
    By         
    
    Function to simply toggle label visibility on or off
    
    ***************************************************
    
    SCCS Info: @(#) abToggleLabelsForPlotting.il 04/29/20.18:30:39 1.1
    
    */
    
    /****************************************************************
    *                                                               *
    *    abToggleLabelsForPlotting([?win winId] [?instLabels t]     *
    *          [?termLabels t] [?wireLabels t] [?notes t]           *
    *                                                               *
    *     Toggles labels on or off for plotting. By default all     *
    * label types are toggled but you can control them individually *
    * with the keyword arguments. Note that the current visibility  *
    *        is determined from the first layer it looks at         *
    *                                                               *
    ****************************************************************/
    
    procedure(abToggleLabelsForPlotting(@key 
        (win hiGetCurrentWindow())
        (instLabels t)
        (termLabels t)
        (wireLabels t)
        (notes t)
        )
      let((lpps first lppId visibility cvId techId)
        lpps=`(
          ,@(instLabels &&
            `(
              ("device" "annotate")
              ("annotate" "drawing")
              ("annotate" "drawing7")
              )
            )
          ,@(notes &&
            `(
              ("text" "drawing")
              ("text" "drawing1")
              )
            )
          ,@(termLabels &&
            `(
              ("annotate" "drawing8")
              )
            )
          ,@(wireLabels &&
            `(
              ("wire" "label")
              )
            )
          )
        first=car(lpps)
        cvId=geGetEditCellView(win)
        techId=techGetTechFile(cvId)
        lppId=techGetLP(techId first)
        visibility=!lppId~>visible
        foreach(lpp lpps
          lppId=techGetLP(techId lpp)
          lppId~>visible=visibility
        )
        hiRedraw(win)
        visibility
      )
    )
    

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
  • david jk
    david jk over 5 years ago in reply to Andrew Beckett

    HI Andrew,

    Thx a lot for the prompt reply. I am pretty new here so sorry for breaking the rules...

    The code you sent is exactly what I need, or what I mean from here I can figure out myself what I need...:)

    Cheers,

    David

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

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