Maps the CAD layer information to the manufacturing layer information that is required for GDSII/OASIS files.
Syntax |
Description |
---|---|
out= cadtostreamlayer(layerMapFile, CADLayerName, CADPurpose); |
Maps the CAD layer information to the manufacturing layer information that is required for GDSII/OASIS files.
layerMapFile: path to the Virtuoso PDK layermap file CADLayerName: CAD layer name CADPurpose: CAD layer purpose
This command returns the struct that contains the mapped information for the manufacturing layer. The mapping is done as follow:
|
Example
This example maps a CAD layer (i.e., SiEtch0 drawing) to a manufacturing layer.
layerMapFile = pwd+"/gopdk.layermap";
StreamData=cadtostreamlayer(layerMapFile, "SiEtch0", "drawing");
?StreamData.StreamLayer;
?StreamData.StreamType;