AutoNaming
SCPI Commands :
MMEMory:AUTonaming:TIME
MMEMory:AUTonaming:INDex
MMEMory:AUTonaming:DATE
MMEMory:AUTonaming:USERtext
MMEMory:AUTonaming:PREFix
MMEMory:AUTonaming:TEXT
MMEMory:AUTonaming:DEFaultpath
- Commands in total: 9Subgroups: 2Direct child commands: 7
- get_date() bool[source]
# MMEMory:AUTonaming:DATE value: bool = driver.massMemory.autoNaming.get_date()
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().
- get_default_path() str[source]
# MMEMory:AUTonaming:DEFaultpath value: str = driver.massMemory.autoNaming.get_default_path()
- Sets the path where data and settings files will be stored. The factory default path is:
‘C:/Users/Public/Documents/Rohde-Schwarz/RTx’ if no USB flash drive is connected
Drive letter of the USB flash drive, for example, ‘E:/’ or ‘F:/’ if a USB flash drive is connected.
- Returns:
path: String parameter
- get_index() bool[source]
# MMEMory:AUTonaming:INDex value: bool = driver.massMemory.autoNaming.get_index()
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().
- get_prefix() bool[source]
# MMEMory:AUTonaming:PREFix value: bool = driver.massMemory.autoNaming.get_prefix()
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().
- 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 name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().
- get_user_text() bool[source]
# MMEMory:AUTonaming:USERtext value: bool = driver.massMemory.autoNaming.get_user_text()
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().
- set_date(name_date: bool) None[source]
# MMEMory:AUTonaming:DATE driver.massMemory.autoNaming.set_date(name_date = False)
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().- Parameters:
name_date – OFF | ON
- 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 will be stored. The factory default path is:
‘C:/Users/Public/Documents/Rohde-Schwarz/RTx’ if no USB flash drive is connected
Drive letter of the USB flash drive, for example, ‘E:/’ or ‘F:/’ if a USB flash drive is connected.
- 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 name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().- 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 name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().- 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_time: bool) None[source]
# MMEMory:AUTonaming:TIME driver.massMemory.autoNaming.set_time(name_time = False)
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.massMemory.autoNaming.text().- Parameters:
name_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)
Includes or excludes the name part in the file name pattern for automatic file name generation. This name is used as the default file name. The prefix indicates the type of data that is saved, for example, Histogram, RefCurve, Settings. To define a user text, use method
RsRtx.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