AutoNaming
SCPI Commands :
MMEMory:AUTonaming:TIME
MMEMory:AUTonaming:INDex
MMEMory:AUTonaming:USERtext
MMEMory:AUTonaming:PREFix
MMEMory:AUTonaming:TEXT
MMEMory:AUTonaming:DEFaultpath
- Commands in total: 8Subgroups: 2Direct child commands: 6
- get_default_path() str[source]
# MMEMory:AUTonaming:DEFaultpath value: str = driver.massMemory.autoNaming.get_default_path()
Sets the path where data and settings files are stored. On the instrument, all user data is written to /home/storage/userData. You can create subfolders in this folder.
- Returns:
path: String parameter
- get_index() bool[source]
# MMEMory:AUTonaming:INDex value: bool = driver.massMemory.autoNaming.get_index()
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- Returns:
name_index: OFF | ON
- get_prefix() bool[source]
# MMEMory:AUTonaming:PREFix value: bool = driver.massMemory.autoNaming.get_prefix()
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- get_text() str[source]
# MMEMory:AUTonaming:TEXT value: str = driver.massMemory.autoNaming.get_text()
Defines a text that can be included in the autonaming pattern.
- Returns:
name_string: String parameter
- get_time() bool[source]
# MMEMory:AUTonaming:TIME value: bool = driver.massMemory.autoNaming.get_time()
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- get_user_text() bool[source]
# MMEMory:AUTonaming:USERtext value: bool = driver.massMemory.autoNaming.get_user_text()
If enabled, inserts the specified user text after the prefix. You can define the text with method
RsMxo.massMemory.autoNaming.text().
- set_default_path(path: str) None[source]
# MMEMory:AUTonaming:DEFaultpath driver.massMemory.autoNaming.set_default_path(path = 'abc')
Sets the path where data and settings files are stored. On the instrument, all user data is written to /home/storage/userData. You can create subfolders in this folder.
- Parameters:
path – String parameter
- set_index(name_index: bool) None[source]
# MMEMory:AUTonaming:INDex driver.massMemory.autoNaming.set_index(name_index = False)
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- Parameters:
name_index – OFF | ON
- set_prefix(main_nme_stem_st: bool) None[source]
# MMEMory:AUTonaming:PREFix driver.massMemory.autoNaming.set_prefix(main_nme_stem_st = False)
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- Parameters:
main_nme_stem_st – OFF | ON
- set_text(name_string: str) None[source]
# MMEMory:AUTonaming:TEXT driver.massMemory.autoNaming.set_text(name_string = 'abc')
Defines a text that can be included in the autonaming pattern.
- Parameters:
name_string – String parameter
- set_time(name_date_time: bool) None[source]
# MMEMory:AUTonaming:TIME driver.massMemory.autoNaming.set_time(name_date_time = False)
Includes or excludes the prefix/ date/time /index in the filename pattern for automatic filename generation. This name is used as the default filename. The prefix indicates the type of data that is saved, for example, RefCurve, Settings.
- Parameters:
name_date_time – OFF | ON
- set_user_text(nme_string_st: bool) None[source]
# MMEMory:AUTonaming:USERtext driver.massMemory.autoNaming.set_user_text(nme_string_st = False)
If enabled, inserts the specified user text after the prefix. You can define the text with method
RsMxo.massMemory.autoNaming.text().- Parameters:
nme_string_st – OFF | ON
Cloning the Group
# Create a copy of the original group, that exists independently
autoNaming_copy = driver.massMemory.autoNaming.clone()
Subgroups