Cset

SCPI Commands :

[SOURce]:CORRection:CSET:CATalog
[SOURce]:CORRection:CSET:DELete
[SOURce<HW>]:CORRection:CSET:[SELect]
class CsetCls[source]

Cset commands group definition. 8 total commands, 1 Subgroups, 3 group commands

delete(filename: str) None[source]
# SCPI: [SOURce]:CORRection:CSET:DELete
driver.source.correction.cset.delete(filename = 'abc')

Deletes the specified user correction list file.

param filename

string Filename or complete file path; file extension is optional.

get_catalog() List[str][source]
# SCPI: [SOURce]:CORRection:CSET:CATalog
value: List[str] = driver.source.correction.cset.get_catalog()

Queries a list of available user correction tables.

return

catalog: string List of list filenames, separated by commas

get_select() str[source]
# SCPI: [SOURce<HW>]:CORRection:CSET:[SELect]
value: str = driver.source.correction.cset.get_select()

Selects or creates a file for the user correction data. If the file with the selected name does not exist, a new file is created.

return

filename: string Filename or complete file path; file extension can be omitted.

set_select(filename: str) None[source]
# SCPI: [SOURce<HW>]:CORRection:CSET:[SELect]
driver.source.correction.cset.set_select(filename = 'abc')

Selects or creates a file for the user correction data. If the file with the selected name does not exist, a new file is created.

param filename

string Filename or complete file path; file extension can be omitted.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.correction.cset.clone()

Subgroups