WafermapBinsCommandGroup
Bases: CommandGroupBase
This command group bundles functions for setting up and using the binning table of the wafermap.
clear_all()
Clear all bins. Remove the bin code from all dies and sibsites.
clear_all_values()
Removes all temporarily stored values from the dies.
Each die can store a single floating point value. This value can be used for visualizing parameters across the wafer.
load(file)
Load a binning table from file.
Wraps SENTIO's map:bins:load remote command.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file |
str
|
The file to load the binning table from. |
required |
set_all(bin_val, selection)
Sets the bins of all dies on the wafermap to a specific value.
Wraps SENTIO's map:bins:set_all remote command.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bin_val |
int
|
The bin value to set. |
required |
selection |
BinSelection
|
The selection of dies to set the bin value for. |
required |
set_bin(bin_value, col, row, site=None)
Set a single bin.
Wraps SENTIO's map:bins:set_bin remote command.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bin_value |
int
|
The bin value to set. |
required |
col |
int
|
The column of the die.# |
required |
row |
int
|
The row of the die. |
required |
site |
int | None
|
The site of the die. |
None
|
set_value(value, col, row)
Set a value on a single die.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
float
|
The value to set. |
required |
col |
int
|
The column of the die. |
required |
row |
int
|
The row of the die. |
required |
handler: python options: members: WafermapBinsCommandGroup