Finding a post processor setting

Finding a post processor setting
 1# This example illustrates how to find a particular post processor setting.
 2# When attempting to find settings of type ipMasterSettingType.mstPostProcessor you should always prefix the name of
 3# the setting with the name of the associated plot machine setting seperated by a vertical bar.
 4
 5# Any MTS folder names also need to be included here
 6plot_machine_name = "Samplemakers|Wild"
 7
 8post_processor_name = "Pen plot"
 9full_setting_name =str(plot_machine_name) + "|" + post_processor_name
10
11post_processor_setting = impact.active_database.find_master_tool_setting(full_setting_name, ipMasterSettingType.mstPostProcessor)
12
13if not post_processor_setting.isNone():
14    impact.gui.output_toolbox.add("Successfully found the post processor setting")