schSync
schSync(
l_cvId
)
=> t
Description
Synchronizes the schematic and Cadence database (CDB) data representations.
You must call this function when you use Cadence database access (CDBA) PI functions, such as
dbCreateInst, to create a schematic cellview. However, you do not need to call this function when you use PI schematic functions. Arguments
|
A list of the schematic cellview IDs (d_cvId) whose cellview data representations you want to synchronize with CDB data representations. |
Value Returned
Example
Uses dbCreateInst to add an instance of master to the cellview of cvId, and then calls schSync, which synchronizes the schematic data representation with the CDB data representation.
dbCreateInst( cvId master nil 0:0 "RO" )
schSync( list(cvId) )
Return to top