LogGen

SCPI Commands :

[SOURce<HW>]:BB:EUTRa:LOGGen:GSLogfile
[SOURce<HW>]:BB:EUTRa:LOGGen:LFP
[SOURce<HW>]:BB:EUTRa:LOGGen:OUTPut
[SOURce<HW>]:BB:EUTRa:LOGGen:STATe
class LogGenCls[source]

LogGen commands group definition. 25 total commands, 2 Subgroups, 4 group commands

get_gs_log_file() bool[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:GSLogfile
value: bool = driver.source.bb.eutra.logGen.get_gs_log_file()

Enables the generation of a summary logfile.

return

gen_sum_log: 1| ON| 0| OFF

get_lfp() str[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:LFP
value: str = driver.source.bb.eutra.logGen.get_lfp()

Sets the preamble added to the file name. See ‘Filenames’ for a description of the file naming conventions.

return

preamble: string

get_output() str[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:OUTPut
value: str = driver.source.bb.eutra.logGen.get_output()

Selects the network directory the logged files are stored in.

return

output_path: No help available

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:STATe
value: bool = driver.source.bb.eutra.logGen.get_state()

Enables/disables logfile generation.

return

logging_state: 1| ON| 0| OFF

set_gs_log_file(gen_sum_log: bool) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:GSLogfile
driver.source.bb.eutra.logGen.set_gs_log_file(gen_sum_log = False)

Enables the generation of a summary logfile.

param gen_sum_log

1| ON| 0| OFF

set_lfp(preamble: str) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:LFP
driver.source.bb.eutra.logGen.set_lfp(preamble = 'abc')

Sets the preamble added to the file name. See ‘Filenames’ for a description of the file naming conventions.

param preamble

string

set_output(output_path: str) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:OUTPut
driver.source.bb.eutra.logGen.set_output(output_path = 'abc')

Selects the network directory the logged files are stored in.

param output_path

No help available

set_state(logging_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:EUTRa:LOGGen:STATe
driver.source.bb.eutra.logGen.set_state(logging_state = False)

Enables/disables logfile generation.

param logging_state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.eutra.logGen.clone()

Subgroups