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
Commands in total: 25
Subgroups: 2
Direct child commands: 4
get_gs_log_file() bool[source]
# [SOURce<HW>]:BB:EUTRa:LOGGen:GSLogfile
value: bool = driver.source.bb.eutra.logGen.get_gs_log_file()

Enables the generation of a summary logfile.

Returns:

gen_sum_log: 1 | ON | 0| OFF

get_lfp() str[source]
# [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.

Returns:

preamble: string

get_output() str[source]
# [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.

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

Enables/disables logfile generation.

Returns:

logging_state: 1 | ON | 0| OFF

set_gs_log_file(gen_sum_log: bool) None[source]
# [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.

Parameters:

gen_sum_log – 1 | ON | 0| OFF

set_lfp(preamble: str) None[source]
# [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.

Parameters:

preamble – string

set_output(output_path: str) None[source]
# [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.

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

Enables/disables logfile generation.

Parameters:

logging_state – 1 | ON | 0| OFF

Cloning the Group

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

Subgroups